Dave Dash wrote: > http://staging.onyxfoundation.org/ > > And I am having trouble with the #nav-box .left element in IE. Right > now it's red for IE and set to 1px height, but it doesn't appear > that way. ...It appears I can make the height larger, but not > smaller.
You can control the height of this box when you set line-height:1px; font-size:1px; -- due the IE's height bug [1], the min-height of the box is equal to the inherited line-height, even if the element is empty. But when the user sets her IE to ignore font sizes? overflow: hidden; is another option. Ingo [1] http://positioniseverything.net/explorer/expandingboxbug.html -- http://www.satzansatz.de/css.html ______________________________________________________________________ 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/
