Forum Moderators: not2easy
If you want the divs/cells to be dynamic (resizable), you will have to use javascript, but the same basic layout will still be in effect.
Use one main one that has one row and 4 cols (set the widths of the col td's with css). Then put a 2 row'd table within each of the main td's. It's a little messy but could save you a lot of time if you are worried about it resizing. If you don't care if it resizes, use divs.
Use a table with 1 row and 4 columns. Then put 2 divs that aren't floated or anything inside of each column - each with 100% width.
For example:
...#the_row td div
{
width:100%;
}
...
<table>
<tr id="the_row">
<td>
<div>...</div>
<div>...</div>
</td>
<td>
<div>...</div>
<div>...</div>
</td>
<td>
<div>...</div>
<div>...</div>
</td>
<td>
<div>...</div>
<div>...</div>
</td>
</tr>
</table>
that should solve your problem!
HYBRIDS FTW!