960 GridSystem, three grid_4 inside one grid_12

Posted by Olle on Stack Overflow See other posts from Stack Overflow or by Olle
Published on 2010-05-25T10:57:45Z Indexed on 2010/05/25 11:01 UTC
Read the original article Hit count: 280

Filed under:
|

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>

© Stack Overflow or respective owner

Related posts about 960

Related posts about css-frameworks