From: Paul Jinks <[EMAIL PROTECTED]>

>Steve Clason wrote:
 
>> ul#navlist li a {
>>      display: block;
>>          width: 100%; /*!!!! new !!!!*/
>>      padding: 0.2em;
>>      border-width: 1px;
>>      border-color: #ffe #aaab9c #ccc #fff;
>>      border-style: solid;
>>      color: #EAF5F7;
>>      text-decoration: none;
>>      background: #8C9BB0;
>>      }

IE needs "layout" to make those links work the way you want them to. However, 
since width (one of the "haslayout" triggers[1]) is undesirable, give the 
browser a small height from within a conditional comment to overcome the 
problem. (remove spaces if copy/pasting) - 

< !--[if IE] >
< style type="text/css" >

ul#navlist li a {height: 1%;}

< /style >
< ![endif]-- >

I hope that helps.

~holly

[1] http://www.satzansatz.de/cssd/onhavinglayout.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/

Reply via email to