colspan
et rowspan
permettent
respectivement d'étaler une cellule de tableau (éléments td
ou th
)
sur plusieurs colonnes et plusieurs lignes.<table border="1">
<caption>Fusions de cellules</caption>
<tr><td>1.1</td><td>1.2</td><td>1.3</td>
<td>1.4</td><td>1.5</td><td>1.6</td>
</tr>
<tr><td colspan="2"
>2 colonnes</td><td rowspan="2"
>2 lignes</td>
<td rowspan="2" colspan="2"
>2 lignes <br /> 2colonnes</td>
<td>2.6</td>
</tr>
<tr><td>3.1</td><td>3.2</td><td>3.6</td>
</tr>
<tr><td>4.1</td><td>4.2</td><td>4.3</td>
<td>4.4</td><td>4.5</td><td>4.6</td>
</tr>
</table>
1.1 | 1.2 | 1.3 | 1.4 | 1.5 | 1.6 |
2 colonnes | 2 lignes | 2 lignes 2colonnes | 2.6 | ||
3.1 | 3.2 | 3.6 | |||
4.1 | 4.2 | 4.3 | 4.4 | 4.5 | 4.6 |