HTML <th> width属性用于指定表标题单元格的宽度。如果未设置width属性,则它将根据内容采用默认宽度。 HTML 5不支持它。
用法:
<th width="pixels | %">
属性值:
- pixels:它以像素为单位设置表格标题单元格的宽度。
- %:它以百分比(%)设置表格标题单元格的宽度。
例:
<!DOCTYPE html>
<html>
<head>
<title>
HTML th width Attribute
</title>
</head>
<body>
<h1>GeeksforGeeks</h1>
<h2>HTML th width Attribute</h2>
<table border="1" width="500">
<tr>
<th width="50%">NAME</th>
<th width="20%">AGE</th>
<th width="30%">BRANCH</th>
</tr>
<tr>
<td>BITTU</td>
<td>22</td>
<td>CSE</td>
</tr>
<tr>
<td>RAKESH</td>
<td>25</td>
<td>EC</td>
</tr>
</table>
</body>
</html>
输出:
支持的浏览器:下面列出了HTML <th> width属性支持的浏览器:
- 谷歌浏览器
- IE浏览器
- Firefox
- Safari
- Opera
相关用法
- HTML <col> width属性用法及代码示例
- HTML <img> width属性用法及代码示例
- HTML <pre> width属性用法及代码示例
- HTML <td> width属性用法及代码示例
- HTML <object> width属性用法及代码示例
- HTML <canvas> width属性用法及代码示例
- HTML <input> width属性用法及代码示例
- HTML Marquee width用法及代码示例
- HTML <colgroup> width属性用法及代码示例
- HTML <iframe> width属性用法及代码示例
- HTML <embed> width属性用法及代码示例
注:本文由纯净天空筛选整理自jit_t大神的英文原创作品 HTML | <th> width Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。