HTML <th> atributo rowspan

❮ Tag HTML <th>

Exemplo

Uma tabela HTML com uma célula de cabeçalho que abrange três linhas:

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

Mais exemplos de "Experimente você mesmo" abaixo.


Definição e uso

O rowspanatributo define o número de linhas que uma célula de cabeçalho deve abranger.


Suporte ao navegador

Attribute
rowspan Yes Yes Yes Yes Yes


Sintaxe

<th rowspan="number">

Valores de atributo

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)

Mais exemplos

Exemplo

Usando rowspan="0" (funciona no Chrome, Firefox e 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 HTML <th>