On Mon, 4 Jun 2007, jana  coyle wrote:

> It works great in Firefox but IE puts an additional extra blank line 
> after the graphic.

So it seems, but this behavior is independent of the effect of the 
vertical-align setting that seems to fix the problem you described.

A way to get rid of the extra blank line, which is actually the default 
border bottom of a form element, is

form { margin: 0; }

(It's an old tradition in web browsers to use a default bottom margin for 
form elements, and it's also a tradition to do such things inconsistently.

You can also set the bottom margin to some sufficiently small value, like

form { margin-bottom: 0.1em; }

(Personally I think that the bordered box for the small form is a bit too 
tight, so _some_ margin might be useful.)

-- 
Jukka "Yucca" Korpela, http://www.cs.tut.fi/~jkorpela/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
IE7 information -- http://css-discuss.incutio.com/?page=IE7
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to