<th> rowspan 屬性的使用方法,rowspan屬性定義標(biāo)題單元格應(yīng)該跨越的行數(shù),在線實(shí)例演示如何使用 <th> rowspan 屬性、瀏覽器的兼容性、語(yǔ)法定義及它的屬性值詳細(xì)資料等。
一個(gè)具有跨越三行的標(biāo)題單元格的HTML表:
<table style="width:100%" border="1"> <tr> <th>年份</th> <th>儲(chǔ)蓄</th> <th rowspan="3">存錢(qián)買(mǎi)房</th> </tr> <tr> <td>2019</td> <td>$19320.00</td> </tr> <tr> <td>2020</td> <td>$28320.00</td> </tr> </table>測(cè)試看看 ?/?
屬性 | |||||
---|---|---|---|---|---|
rowspan | Yes | Yes | Yes | Yes | Yes |
注意:只有 Firefox 和 Opera 支持 rowspan="0",該值有特殊的含義(請(qǐng)看下面的"屬性值"表格)。
rowspan 屬性定義表頭單元格應(yīng)該橫跨的行數(shù)。
沒(méi)有。
<th rowspan="number">
值 | 描述 |
---|---|
number | 指定表頭單元格應(yīng)該橫跨的行數(shù)。 注意: rowspan="0" 告知瀏覽器使單元格橫跨到表格組件中的最后一個(gè)行(thead、tbody 或 tfoot)。 |