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