Atributo de rango de filas HTML <th>

❮ Etiqueta HTML <th>

Ejemplo

Una tabla HTML con una celda de encabezado que abarca tres filas:

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

Más ejemplos de "Pruébelo usted mismo" a continuación.


Definición y uso

El rowspanatributo define el número de filas que debe abarcar una celda de encabezado.


Compatibilidad con navegador

Attribute
rowspan Yes Yes Yes Yes Yes


Sintaxis

<th rowspan="number">

Valores de atributos

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)

Más ejemplos

Ejemplo

Usando rowspan="0" (funciona en Chrome, Firefox y 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>

❮ Etiqueta HTML <th>