HTML <th> rowspan Attribuut

❮ HTML <th>-tag

Voorbeeld

Een HTML-tabel met een koptekstcel die drie rijen beslaat:

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

Meer "Probeer het zelf" voorbeelden hieronder.


Definitie en gebruik

Het rowspanattribuut definieert het aantal rijen dat een kopcel moet beslaan.


Browserondersteuning

Attribute
rowspan Yes Yes Yes Yes Yes


Syntaxis

<th rowspan="number">

Attribuutwaarden

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)

Meer voorbeelden

Voorbeeld

Rowspan="0" gebruiken (werkt in Chrome, Firefox en 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>-tag