HTML 标签的 nowrap 属性
nowrap 属性规定表头单元格中的内容不换行。
实例
带有 nowrap 属性的表格单元:
<html>
<body>
<p>请适当缩小浏览器窗口,就可以看到该属性的效果:</p>
<p>不带有 nowrap 属性的表格:</p>
<table border="1">
<tr>
<th>美国公司</th>
<th align="right">地址</th>
</tr>
<tr>
<td>Apple, Inc.</td>
<td>加利福尼亚州库珀蒂诺,邮编95014</td>
</tr>
<tr>
<td>Google, Inc.</td>
<td>竞技场公园道山景1600,加利福尼亚州94043</td>
</tr>
</table>
<p>带有 nowrap 属性的表格:</p>
<table border="1">
<tr>
<th>Company in USA</th>
<th nowrap="nowrap">--------------------- 地址 --------------------</th>
</tr>
<tr>
<td>Apple, Inc.</td>
<td>加利福尼亚州库珀蒂诺,邮编95014</td>
</tr>
<tr>
<td>Google, Inc.</td>
<td>竞技场公园道山景1600,加利福尼亚州94043</td>
</tr>
</table>
</body>
</html>
定义和用法
nowrap 属性规定表头单元格中的内容不换行。
浏览器支持
尽管不建议使用 nowrap 属性,但是所有浏览器都支持它。
兼容性注释
在 HTML 4.01 中,不建议使用 th 元素的 nowrap 属性;在 XHTML 1.0 Strict DTD 中,不支持 th 元素的 nowrap 属性。
语法
<th nowrap="value">
属性值
值 | 描述 |
---|---|
nowrap | 规定表头单元格中的内容不换行。 |