HTML <th> rowspan- kenmerk

❮ HTML <de> merker

Voorbeeld

'n HTML-tabel met 'n kopsel wat oor drie rye strek:

<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 dit self" voorbeelde hieronder.


Definisie en gebruik

Die rowspankenmerk definieer die aantal rye wat 'n kopsel moet strek.


Blaaierondersteuning

Attribute
rowspan Yes Yes Yes Yes Yes


Sintaksis

<th rowspan="number">

Eienskapwaardes

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 voorbeelde

Voorbeeld

Gebruik rowspan="0" (werk 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 <de> merker