最新的Web開發教程
 

HTML <th> height Attribute

<HTML <th>標籤

兩個頭細胞預定高度:

<table>
  <tr>
    <th height="100">Month</th>
    <th height="100">Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
試一試»

定義和用法

height屬性指定標題單元格的高度。

如果沒有高度屬性設置,標題單元格佔用它需要顯示的內容的空間。 的height屬性用於設置一個標題單元的預定高度。


瀏覽器支持

屬性
height

兼容性說明

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

CSS語法: <th style="height:100px">

CSS舉例:設置標題單元格的高度

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


句法

<th height="pixels|%">

屬性值

描述
pixels 設置像素高度(例如: height="50"
% 設置在周邊元件的百分比的高度(例如: height="50%"

<HTML <th>標籤