集册 HTML 标签教程 HTML <th> rowspan 属性

HTML <th> rowspan 属性

Xebcnor     最近更新时间:2019-09-24 03:41:59

393

HTML <th> rowspan 属性

HTML th 标签参考手册 HTML <th> 标签

实例

下面的 HTML 表格中包含一个横跨三行的表头单元格:

<table border="1"> <tr> <th>Month</th> <th>Savings</th> <th rowspan="3">Savings for holiday!</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> <tr> <td>February</td> <td>$80</td> </tr> </table>

运行实例
(更多实例见页面底部)

浏览器支持

属性
rowspan Yes Yes Yes Yes Yes

注意:只有 Firefox 和 Opera 支持 rowspan="0",该值有特殊的含义(请看下面的"属性值"表格)。

定义和用法

rowspan 属性定义表头单元格应该横跨的行数。

展开阅读全文