最新的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>標籤