HTML <th> 标签的 height 属性
实例
两个带有预定义高度的单元格:
<table border="1"> <tr> <thheight="100px"
>Company in USA</th> <thheight="100px"
>Address</th> </tr> <tr> <td>Apple, Inc.</td> <td>1 Infinite Loop Cupertino, CA 95014</td> </tr> <tr> <td>Google, Inc.</td> <td>1600 Amphitheatre Parkway Mountain View, CA 94043</td> </tr> </table>
定义和用法
height 属性规定表格的表头单元格的高度。
通常,单元格占用的空间就是它显示内容需要的空间。height 属性用于为单元格设置预定义的高度。
浏览器支持
尽管不赞成使用 height 属性,但是所有浏览器都支持它。
兼容性注释
在 HTML 4.01 中,不推荐使用 th 元素的 height 属性;在 XHTML 1.0 Strict DTD 中,不支持 th 元素的 height 属性。
请使用 CSS 代替。
CSS 语法:<th style="height:100px">
在我们的 CSS 教程中,您可以找到更多有关 height 属性 的细节。
语法
<th height="value">
属性值
值 | 描述 |
---|---|
pixels | 以像素计的高度值(比如 "100px")。 |
percent | 以包含元素百分比计的高度值(比如 "20%")。 |