Atrybut HTML <th> rowspan

❮ Znacznik HTML <th>

Przykład

Tabela HTML z komórką nagłówka, która obejmuje trzy wiersze:

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

Więcej przykładów „Wypróbuj sam” poniżej.


Definicja i użycie

rowspanAtrybut określa liczbę wierszy, które powinna obejmować komórka nagłówka .


Obsługa przeglądarki

Attribute
rowspan Yes Yes Yes Yes Yes


Składnia

<th rowspan="number">

Wartości atrybutów

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)

Więcej przykładów

Przykład

Korzystanie z rowspan="0" (działa w Chrome, Firefox i 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>

❮ Znacznik HTML <th>