下面的 HTML 表格中包含一个横跨三行的表头单元格:An HTML table with a header cell that spans three rows:
<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 属性。
注意:只有 Firefox 和 Opera 支持 rowspan="0",该值有特殊的含义(请看下面的"属性值"表格)。
rowspan 属性定义表头单元格应该横跨的行数。
无。
<th rowspan="number">
值 | 描述 |
---|---|
number | 规定表头单元格应该横跨的行数。注意: rowspan="0" 告知浏览器使单元格横跨到表格组件中的最后一个行(thead、tbody 或 tfoot)。 |
rowspan="0" 的使用
该实例只适用于 Firefox 和 Opera 浏览器,实例演示了 rowspan="0" 的使用。
在线实例
字符集 & 工具
最新更新
站点信息
关注我们