On 6/3/05, Magenta Placenta <[EMAIL PROTECTED]> wrote:
> http://www.5finger.com/columns.html
> If you look at this page, you'll see the dark gray (div id="shell"), which
> is the basic container for the columns within, has extra space below the
> masthead and footer.  The masthead/footer should butt right up against the 3
> columns inside.  How do I get rid of that extra spacing/gray bkg?

That space seems to be coming from the default margins on the <h3>.
Zeroing the margins removes the gray gaps.

h3 { margin: 0; }

Or, since you seem to be zeroing margins everywhere anyway, use the
Universal Zero Rule to override the default style on all elements:

* { margin: 0; padding: 0; }

Then specify margins and padding for each element however you like.

-- 
Craig, www.focalcurve.com
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to