HTML Atribut <th> rowspan

❮ HTML tag <th>

Příklad

HTML tabulka s buňkou záhlaví, která zahrnuje tři řádky:

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

Další příklady „Vyzkoušejte si to sami“ níže.


Definice a použití

Atribut rowspandefinuje počet řádků, které by měla obsahovat buňka záhlaví.


Podpora prohlížeče

Attribute
rowspan Yes Yes Yes Yes Yes


Syntax

<th rowspan="number">

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

Další příklady

Příklad

Použití rowspan="0" (funguje v prohlížečích Chrome, Firefox a 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 tag <th>