Attribut HTML <td> rowspan

❮ Balise HTML <td>

Exemple

Un tableau HTML avec une cellule de tableau qui s'étend sur deux lignes :

<table>
  <tr>
    <th>Month</th>
    <th>Savings</th>
    <th>Savings for holiday!</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
    <td rowspan="2">$50</td>
  </tr>
  <tr>
    <td>February</td>
    <td>$80</td>
  </tr>
</table>

Plus d'exemples "Essayez-le vous-même" ci-dessous.


Définition et utilisation

L' rowspanattribut spécifie le nombre de lignes qu'une cellule doit couvrir.


Prise en charge du navigateur

Attribute
rowspan Yes Yes Yes Yes Yes


Syntaxe

<td rowspan="number">

Valeurs d'attribut

Value Description
number Specifies the number of rows a 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). Chrome, Firefox, and Opera 12 (and earlier versions) support rowspan="0".

Plus d'exemples

Exemple

Utilisation de rowspan="0":

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

❮ Balise HTML <td>