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