最新的Web開發教程
 

HTML <th> nowrap Attribute

<HTML <th>標籤

用NOWRAP屬性的頭單元格:

<table>
  <tr>
    <th>Month</th>
    <th nowrap>My Savings for a new car</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
試一試»

定義和用法

nowrap屬性是一個布爾屬性。

如果存在,它指定一個標題單元格中的內容不應該換行。


瀏覽器支持

屬性
nowrap

兼容性說明

nowrap的屬性<th>在HTML5不支持。 使用CSS來代替。

CSS語法: <th style="white-space: nowrap">

CSS實例:無字包裝的標題單元格

在我們的CSS教程中,你可以找到有關的更多詳細信息white-space property


HTML和XHTML之間的差異

在XHTML中,屬性最小化是被禁止的,而nowrap屬性必須被定義為<th nowrap="nowrap">


句法

<th nowrap>

<HTML <th>標籤