最新的Web開發教程
 

HTML rowspan Attribute


定義和用法

rowspan屬性指定行的單元格跨越的數目。


適用於

rowspan屬性可以在下列元素一起使用:

分子 屬性
<td> rowspan
<th> rowspan

例子

Td

一個HTML表格與跨越兩行的表格單元格:

<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
    <th>Savings for holiday!</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
    <td rowspan="2">$50</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>
試一試»

Th

一個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屬性為每個元素以下瀏覽器支持:

元件
td
th