最新的Web开发教程
 

HTML <th> nowrap Attribute

<HTML <th>标签

用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实例:无字包装的标题单元格

在我们的CSS教程中,你可以找到有关的更多详细信息white-space property


HTML和XHTML之间的差异

在XHTML中,属性最小化是被禁止的,而nowrap属性必须被定义为<th nowrap="nowrap">


句法

<th nowrap>

<HTML <th>标签