HTML表格中的nowrap是什么意思啊?

HTML<td>标签的nowrap属性

nowrap属性规定表格单元格中的内容不换行。实例

带有nowrap属性的表格单元:

<tableborder="1">

<tr>

<th>Poem</th>

<th>Poem</th>

</tr>

<tr>

<tdnowrap="nowrap">Neverincrease,beyondwhatisnecessary,the

numberofentitiesrequiredtoexplainanything</td>

<td>Neverincrease,beyondwhatisnecessary,thenumberofentities

requiredtoexplainanything</td>

</tr>

</table>

TIY

浏览器支持

尽管不赞成使用nowrap属性,但是所有浏览器都支持它。

兼容性注释

在HTML4.01中,不赞成使用td元素的nowrap属性;在XHTML1.0StrictDTD中,不支持td元素的nowrap属性。

请使用CSS代替。

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

CSS实例:td中不换行

在我们的CSS教程中,您可以找到更多有关white-space属性的细节。

语法

<tdnowrap="value">

属性值值描述

nowrap规定表格单元格中的内容不换行。

HTML中td元素的nowrap属性表示禁止单元格中的文字自动换行。

但使用时要注意的是,td元素中nowrap属性的行为与td元素的width属性有关。如果未设置td宽度,则nowrap属性起作用的,如果设置了td宽度,则nowrap属性不起作用。

相关推荐