I've got a simple two column layout with two 'div' blocks in the right column.
Is there any way to achieve such a layout without using tables?
I've seen solutions that use absolute positioning, but this raises issues of its own.
td { border-width: 1; border-style: solid; }
<table>
<tr>
<td rowspan='2'>Left</td> <td>Right top</td>
</tr>
<tr>
<td>Right bottom</td>
</tr>
</table>