Im using the 960 css framework. I have this code:
<div class="container_16" id="header">
div class="grid_16">Header</div>
</div>
960 adds 10px gutters to the left and right side of the grids. I want to use the full 960 width. So I read to use alpha and omega to remove the 10px gutters from the left and right side. However is this the correct way of using the 960 framework?
<div class="container_16" id="header">
div class="grid_16 alpha omega">header</div>
</div>
<div class="container_16" id="nav">
div class="grid_16 alpha omega">nav</div>
</div>
<div class="container_16" id="body">
div class="grid_16 alpha omega">body</div>
</div>
<div class="container_16" id="footer">
div class="grid_16 alpha omega">footer</div>
</div>
Just doesnt seem like it was meant to be used that way. But I dont want the spacing on the left and right side.