HTML <td>标签的nowrap属性

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

示例

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

<table border="1">
  <tr>
    <th>诗</th>
    <th>诗</th>
  </tr>
  <tr>
    <td nowrap="nowrap">Never increase, beyond what is necessary, the number of entities required to explain anything</td>
    <td>Never increase, beyond what is necessary, the number of entities required to explain anything</td>
  </tr>
</table>

试一个 »

定义及用法

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


浏览器支持

Internet Explorer Firefox Opera Google Chrome Safari

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


兼容性提示

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

请用CSS作为替代。

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

CSS示例:不折行的单元格

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


语法

<td nowrap="value">

属性值

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


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