html td nowrap不换行属性如何使用方法

像一场落幕的电影,在华丽的风景都看透,在真挚的感情都虚无。你是我流年里最美丽的风景,却让我心痛不已。

nowrap是什么意思?

nowrap定义和用法

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

实例

带有 nowrap 属性的表格单元:

复制代码
代码如下:

<table border="1">
<tr>
<th>Poem</th>
<th>Poem</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>

TIY

浏览器支持

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

兼容性注释

在 HTML 4.01 中,不赞成使用 td 元素的 nowrap 属性;在 XHTML 1.0 Strict DTD 中,不支持 td 元素的 nowrap 属性。

请使用 CSS 代替。

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

CSS 实例:td 中不换行

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

语法

<td nowrap="value">属性值

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

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

nowrap详细解说

nowrap表示是否允许表格中的文本换行
nowrap=true的时候不能换行
nowrap=false可以换行

nowrap实例演示

<script language="JavaScript">ffcod = delpost.runcode3 .value; ffcod = ffcod.replace(/
/g,''); delpost.runcode3 .value = ffcod;</script> 提示:您可以先修改部分代码再运行

以上就是html td nowrap不换行属性如何使用方法。我们最大的悲哀,是迷茫地走在路上,看不到前面的希望;我们最坏的习惯,是苟安于当下生活,不知道明天的方向。更多关于html td nowrap不换行属性如何使用方法请关注haodaima.com其它相关文章!

标签: html td