HTML <th> rowspan 属性
实例
下面的 HTML 表格中包含一个横跨三行的表头单元格:
<table>
<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>
亲自试一试 »
下面有更多实例。
定义和用法
下面的 HTML 表格中包含一个横跨三行的表头单元格:
浏览器支持
属性 | |||||
---|---|---|---|---|---|
rowspan | Yes | Yes | Yes | Yes | Yes |
语法
<th rowspan="number">
属性值
值 | 描述 |
---|---|
number | 规定表头单元格应该横跨的行数。 注意: rowspan="0" 告知浏览器使单元格横跨到表格组件中的最后一个行(thead、tbody 或 tfoot)。 |
更多实例
实例
使用 rowspan="0" (适用于 Chrome, Firefox , Opera):
<table>
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
<th rowspan="3">Savings for holiday!</th>
</tr>
</thead>
<tbody>
<tr>
<td>January</td>
<td>$100</td>
<td rowspan="0">$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
</table>
亲自试一试 »
❮ HTML <th> 标签