HTML <th> 标签的 rowspan 属性 详解
HTML基础 2022-06-02 12:09:01小码哥的IT人生shichen
HTML <th> 标签的 rowspan 属性
实例
表格单元横跨两行的表格:
<table border="1">
<tr>
<th>Company</th>
<th>Address</th>
<th rowspan="3">All the companies in USA</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>
完整实例【亲自试一试】:
<html>
<body>
<table border="1">
<tr>
<th>Company</th>
<th>Address</th>
<th rowspan="3">All the companies in USA</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>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
rowspan 属性规定表头单元格可横跨的行数。
浏览器支持
所以浏览器都支持 rowspan 属性。
没有浏览器支持 rowspan="0",这个值有特殊的意义。(参见属性值表格中的描述)
语法
<th rowspan="value">
属性值
值 | 描述 |
---|---|
number |
设置表头单元格可横跨的行数。 注释:rowspan="0" 指示浏览器横跨到表格部分的最后一行(thead、tbody 或者 tfoot)。 |