DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> html td nowrap不換行屬性使用方法
html td nowrap不換行屬性使用方法
編輯:CSS詳解     

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可以換行

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved