HTML <th> 标签的 width 属性
width 属性规定表格的表头单元格的宽度。
通常,单元格占用的空间就是它显示内容需要的空间。width 属性用于为单元格设置预定义的宽度。
1. 范例
两个带有预定义宽度的单元格:
<table border="1"> <tr> <th width="40%">Company in USA</th> <th width="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>
2. 浏览器支持
尽管不赞成使用 width 属性,但是所有浏览器都支持它。
3. 兼容性注释
在 HTML 4.01 中,不赞成使用 th 元素的 width 属性;在 XHTML 1.0 Strict DTD 中,不支持 th 元素的 width 属性。
请使用 CSS 代替。
CSS 语法:<th style="width:100px">
4. 语法
<th width="value">
属性值
值 | 描述 |
---|---|
pixels | 以像素计的宽度值(比如 "100px")。 |
percent | 以包含元素百分比计的宽度值(比如 "20%")。 |
HTML <thead> 标签的 align 属性:align 属性规定 thead 元素中的内容的水平对齐方式。1. 浏览器支持:所有浏览器都支持 align 属性。2. 语法:<thead align="value">