On 9/28/07, Brian Funk wrote: > Several IE issues here: > <http://www.stoneladder.ca/sandbox/css/fixie.html> > <http://www.stoneladder.ca/sandbox/css/fixie.css> > > 1. In IE6 and IE7 I have a vertical gap between the list items (leftside > nav) that I can't get closed. The gap was much larger until I gave a > width to the list items but I don't understand why that worked.
There are many cases when IE add extra vertical space between list items [1]. Giving a width to them you gave them hasLayout [2] and this closed the biggest space in IE6. To close the remaining one, you can try several things: - apply vertical-align:top to the list items, - do not apply hasLayout (your width) to the list items, but to the inner links - see [1] for further combinations... > 2.The space below the top left image is less in IE6 than it should be. That space is created by a min-height on #header, and IE6 does not support min-height. You can feed a height to IE6 (and below) only, and this will give you the same effect. I haven't checked with IE5.5. Hope this helps a little, Bruno [1] http://www.brunildo.org/test/IEWlispace.php [2] http://www.satzansatz.de/cssd/onhavinglayout.html -- Bruno Fassino http://www.brunildo.org/test ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
