I found this really simple but interesting use of colspan and rowspan in the same table example.
Here’s a example:
<table style="height: 100px;" border="0" cellspacing="0" cellpadding="0" width="100px">
<tr>
<td style="background-color:yellow" colspan="2">
</td>
<td style="background-color:red" rowspan="2">
</td>
</tr>
<tr>
<td style="background-color:orange" rowspan="2">
</td>
<td>
</td>
</tr>
<tr>
<td style="background-color:gray" colspan="2">
</td>
</tr>
</table>
Nice…