Atribut HTML <th> rowspan

tag <th> HTML

Contoh

Tabel HTML dengan sel header yang mencakup tiga baris:

<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>

Lebih banyak contoh "Coba Sendiri" di bawah ini.


Definisi dan Penggunaan

Atribut rowspanmendefinisikan jumlah baris sel header harus span.


Dukungan Peramban

Attribute
rowspan Yes Yes Yes Yes Yes


Sintaksis

<th rowspan="number">

Nilai Atribut

Value Description
number Sets the number of rows a header cell should span. Note: rowspan="0" tells the browser to span the cell to the last row of the table section (thead, tbody, or tfoot)

Lebih Banyak Contoh

Contoh

Menggunakan rowspan="0" (berfungsi di Chrome, Firefox, dan 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>

tag <th> HTML