On Mar 25, 2011, at 11:33 AM, David Laakso wrote: > FF/3.6.15 puts a space beneath the buttons in the fuchsia nav block. > Safari/4.1.3 does not. > What to do, if anything? > > HTML > <http://chelseacreekstudio.com/>
why the overflow: hidden in nav li a, nav ul li b ? remove it and you'll have the same display in Webkit and Gecko and Opera and IE 9. WebKit incorrectly misalign display:inline-block elements on the baseline. And the rules are different depending on what you set the overflow:property to. (bottom of http://www.w3.org/TR/CSS21/visudet.html#propdef-vertical-align) quote: The baseline of an 'inline-block' is the baseline of its last line box in the normal flow, unless it has either no in-flow line boxes or if its 'overflow' property has a computed value other than 'visible', in which case the baseline is the bottom margin edge. Philippe -- Philippe Wittenbergh http://l-c-n.com/ ______________________________________________________________________ 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/
