HTML 标签的 rowspan 属性
rowspan 属性规定表头单元格可横跨的行数。可以用在 th 和 td 元素中。
实例
表格单元横跨两行的表格:
<html>
<body>
<table border="1">
<tr>
<th>公司</th>
<th>地址</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>
<html>
<body>
<table border="1">
<tr>
<th>月份</th>
<th>结余</th>
<th rowspan="3">为了假日攒钱!</th>
</tr>
<tr>
<td>1月</td>
<td>$100</td>
</tr>
<tr>
<td>2月</td>
<td>$80</td>
</tr>
</table>
</body>
</html>
定义和用法
rowspan 属性规定表头单元格可横跨的行数。可以用在 th 和 td 元素中。
浏览器支持
所以浏览器都支持 rowspan 属性。
没有浏览器支持 rowspan="0",这个值有特殊的意义。(参见属性值表格中的描述)
语法
<th rowspan="value">
<td rowspan="value">
属性值
值 | 描述 |
---|---|
number | 设置表头单元格可横跨的行数。 注释:rowspan="0" 指示浏览器横跨到表格部分的最后一行(thead、tbody 或者 tfoot)。 |