HTML <th>标签的nowrap属性

HTML <th>标签参考手册 HTML <th>标签

示例

一个定义了nowrap属性的表头单元格:

<table border="1">
  <tr>
    <th>月份</th>
    <th nowrap="nowrap">用于买新车的存款</th>
  </tr>
  <tr>
    <td>一月</td>
    <td>100</td>
  </tr>
  <tr>
    <td>二月</td>
    <td>80</td>
  </tr>
</table>

试一个 »

定义及用法

<th>标签的nowrap属性用于指出表头单元格里的内容不应折行。


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

虽然<th>标签的nowrap属性已被弃用,但所有主流浏览器仍然支持它。


h2>兼容性提示

<th>标签的nowrap属性已被弃用,HTML 4.01 Strict和XHTML 1.0 Strict DTD均不支持此属性。

请用CSS作为替代。

CSS语法:<th style="white-space:nowrap">

CSS示例:不折行的表头单元格

在我们的CSS教程中,你可以找到有关white-space属性的更多信息。


语法

<th nowrap="value">

属性值

描述
nowrap 指出表头单元格里的内容不应折行


HTML <th>标签参考手册 HTML <th>标签
粤ICP备11097351号-1