I'm using Stephen Bau's 960 fluid grid, and I dont think it works with nested grids because each grid is a % of its parent, unless I'm miss using it?
In the stylesheet
.grid_12 { width:98%, }
So if the viewport is 1200px then <header /> is 1176px, then the nested <nav /> grid is 98% of that making it 1152.48px - if it was the regular 960 fixed grid both would be the same width
<div id="wrap" class="container_12">
<header class="grid_12">
<div id="logo" class="grid_6 alpha">
.. logo img ...
</div>
<div id="uti" class="grid_5 prefix_1 omega">
.. util menu ...
</div>
<nav class="grid_12">
.. nav list ..
</nav>
</header>
<div id="content class="grid_12">
<div id="main-content" class="grid_12 clearfix">
<div id="col-1" class="grid-9 alpha">
</div>
<div id="col-2" class="grid-3 omega">
</div>
</div>
</div>
<footer class="grid_12 clearfix">
</footer>
</div>