A while ago I was trying to figure out a way of doing this without using a table layout:
<table>
<tr><td rowspan="2">Left column</td></tr>
<tr><td>Right Top</td><td>Right bottom</td></tr>
</table>
Eventually I gave up and decided that it's impossible to do without tables (okay, CSS 3 might be able to, but waiting another 5-10 years isn't practical).
Has anyone got more examples like this? (Or even better, can you show me I was wrong?)