dumbass rob wrote:
> hey up all
> 
> I'm implementing a css + javascript drop down menu:
> http://www.cairnsinfo.com/menu_test.asp
> 
> looks lovely in FF (of course), but can anyone tell me why ****ing IE6
> makes the <a> tags' height 1 pixel too small, resulting in the 1 pixel
> wide dark blue line under each top level menu item as you roll over
> them?  
> 
> (I know it's in quirks mode - it's for an old site that would break if
> forced into standards mode, but making it proper xhtml doesn't fix it
> anyway)

duh. it is the IE quirks mode box model after all, I was being dim.
Fixed it with a IE only rule:


/* hack for IE in quirks mode */
* html .menulist a {
        height: 20px;
}

______________________________________________________________________
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