> Any recommendations or pointers appreciated.  How can I reduce the
> vertical spacing between elements of the form? The goal is a tighter,
> sleeker look (without images).  Adjusting margin, padding and
> line-height are not doing what I had hoped or I don't understand how to
> use them.
>
> See sample with CSS at:   www.dottedi.biz/test.php
>
> -Bob

The paragraphs containing your label and input pairs have the browser's
default margin-top and margin-bottom of (in Firefox, at least) 1em. Using

fieldset p {
   margin: 0;
}

will remove it. As you probably want a bit of spacing, adjust the 0 to
suit (e.g. 0.25em).

Regards,

Nick.
-- 
Nick Fitzsimons
http://www.nickfitz.co.uk/

______________________________________________________________________
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