Réalisation tableau imbriqué
Bonjour,
Je suis en train de me prendre la tête avec un tableau.
Je voudrais réaliser un tableau comme ceci:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <table border="1" cellspacing="0" cellpadding="0" width="200">
<tr>
<td>
<table border="1" cellspacing="0" width="100%">
<tr>
<td align="center">1</td>
</tr>
</table>
<table border="1" cellspacing="0" width="100%">
<tr>
<td align="center">1</td>
<td align="center">2</td>
<td align="center">3</td>
</tr>
</table>
<table border="1" cellspacing="0" width="100%">
<tr>
<td align="center">1</td>
<td align="center">2</td>
<td align="center">3</td>
<td align="center">4</td>
<td align="center">5</td>
</tr>
</table>
<table border="1" cellspacing="0" width="100%">
<tr>
<td align="center">1</td>
<td align="center">2</td>
</tr>
</table>
</td>
</tr>
</table> |
Sans passer par les tableaux imbriquer
Est-il possible?
Je vous remercie
Max