I'm currently experimenting with the 960 grid css framework.
How can I eliminate the space between two divs stacked on top of each other? [referring to the gap between the blue lines in the image]
I created my CSS using the CSS generator found at . The CSS was generated for a grid with 12 columns and a width of 720 [see link below]
Here is an example of my HTML code:
<div class="container container_12">
<div class="grid_12">
<p>
12
</p>
</div>
<div class="clear"></div>
<div class="grid_5">
<p>
5
</p>
</div>
<div class="grid_7">
<p>
7
</p>
</div>
<div class="clear"></div>
<div class="grid_3">
<p>
3
</p>
</div>
<div class="grid_9">
<p>
9
</p>
</div>
</div>