例
用NOWRAP属性的头单元格:
<table>
<tr>
<th>Month</th>
<th nowrap>My Savings for a new car</th>
</tr>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</table>
试一试» 定义和用法
该nowrap属性是一个布尔属性。
如果存在,它指定一个标题单元格中的内容不应该换行。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
nowrap | 是 | 是 | 是 | 是 | 是 |
兼容性说明
该nowrap的属性<th>在HTML5不支持。 使用CSS来代替。
CSS语法: <th style="white-space: nowrap">
在我们的CSS教程中,你可以找到有关的更多详细信息white-space property 。
HTML和XHTML之间的差异
在XHTML中,属性最小化是被禁止的,而nowrap属性必须被定义为<th nowrap="nowrap"> 。
句法
<th nowrap>