There are lots of CSS layouts floating around out there but I haven't seen one like the one I'm looking for. How would you lay this out?
And I have another question: if it's so easy to do this layout with a table, why do it in CSS when it's going to be much more complicated and buggy. I know that this table will render as I want it to in all browsers. So what's the argument for a CSS layout in this case?
I normally use CSS for more simple layouts, but this one seems like it might get weird. Thoughts? Thanks!
Code:
<table border="1" align="center" width="80%">
<tr>
<td rowspan="3" width="50">left</td>
<td>top</td>
<td rowspan="3" width="50">right</td>
</tr>
<tr>
<td>middle</td>
</tr>
<tr>
<td>bottom</td>
</tr>
</table>
I normally use CSS for more simple layouts, but this one seems like it might get weird. Thoughts? Thanks!