960 GridSystem, three grid_4 inside one grid_12
- by Olle
I've created a 16 column layout with 960gs with a div class="grid_12" and after that a grid_4 (12+4...)
Inside that grid_12 I wanted a three column style (3 grid_4). But the grid_4 boxes don't fit inside the grid_12, the last box drop into a second row.
Shouldn't the 960gs framework be able to do this layout for me, have i missed anything?
Thanks in advance.
<div class="container_16">
...
<div id="main" class="grid_12">
<div class="grid_12">
<div class="grid_4"></div>
<div class="grid_4"></div>
<div class="grid_4"></div>
</div>
<div id="right" class="grid_4">
</div>
</div>
...
</div>