1

We have problem with rendering this sample code:

<table border="1">
<tr>
<td rowspan="2">1</td>
<td>2</td>
<td rowspan="3">3</td>
</tr>
<tr>
<td rowspan="2">5</td>
</tr>
<tr>
<td rowspan="2">4</td>
</tr>

<tr>
<td colspan="2">6</td>
</tr>
<tr>
<td colspan="3">7</td>
</tr>

</table>

2

in your HTML code, rowspan is useless... why do you use it ?
Ancien pseudo : lolo

3

This is just sample code.

4

yes, but if you use a row span than can not be really used (because there is no rows, with the columns without rowspan), it can not work
Ancien pseudo : lolo

5

and what would be the right HTML?
gorazd