例
一個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>
試一試» 更多“試一試”的例子。
定義和用法
該rowspan屬性定義行的標題單元格應跨越的數量。
瀏覽器支持
屬性 | |||||
---|---|---|---|---|---|
rowspan | 是 | 是 | 是 | 是 | 是 |
注意:只有Firefox和Opera 12(及更早版本)的支持rowspan="0"其中有一個特殊的含義(看看下面的“屬性值”表)。
HTML 4.01和HTML5之間的差異
沒有。
句法
<th rowspan="number">
屬性值
值 | 描述 |
---|---|
number | 設置行的標題單元格應跨越的數量。注: rowspan="0"告訴瀏覽器的單元格跨越表款的最後一行( thead, tbody ,或tfoot ) |
更多示例
例
使用rowspan="0"僅在Firefox和Opera 12和更早):
<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>
試一試»