最新的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>标签