最新的Web开发教程
 

HTML <td> nowrap Attribute

<HTML <td>标签

用表的单元格nowrap属性:

<table>
  <tr>
    <th>Poem</th>
    <th>Poem</th>
  </tr>
  <tr>
    <td 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>
试一试»

定义和用法

nowrap属性是一个布尔属性。

如果存在,它指定一个单元格中的内容不应该换行。


浏览器支持

属性
nowrap

兼容性说明

nowrap属性<td>在HTML5不支持。 使用CSS来代替。

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

CSS实例:无字包装表格单元格

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


HTML和XHTML之间的差异

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


句法

<td nowrap>

<HTML <td>标签