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