Définition et utilisation
Le rowspan attribut spécifie le nombre de lignes d' une cellule doit enjamber.
S'applique à
Le rowspan attribut peut être utilisé sur les éléments suivants:
Éléments | Attribut |
---|---|
<td> | rowspan |
<th> | rowspan |
Exemples
Td Exemple
Une table HTML avec une cellule de tableau qui couvre 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>
Essayez - le vous - même » Th Exemple
Un tableau HTML avec une cellule d'en-tête qui couvre trois lignes:
<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>
Essayez - le vous - même » support du navigateur
Le rowspan
attribut a le support de navigateur suivant pour chaque élément:
Élément | |||||
---|---|---|---|---|---|
td | Oui | Oui | Oui | Oui | Oui |
th | Oui | Oui | Oui | Oui | Oui |