More information about the Underscore mailing list

[_] Wordpress permalinks causing IE6 to crash?!

Craig Francis craig at craigfrancis.co.uk
Mon Mar 3 19:24:47 GMT 2008

On 3 Mar 2008, at 12:25, Dale-Anthony wrote:
> .navi a:link, a:active, a:visited { text-decoration: none; float:  
> left;
> color: white; }
> .navi a:hover { text-decoration: none; float: left; color: #669933; }


Could it be the selector?

Shown on multiple lines, would create:

.navi a:link,
a:active,
a:visited {
     text-decoration: none;
     float: left;
     color: white;
}

i.e. it would effect all visited and active links, which could cause  
some really complicated effects.

Perhaps a better version would be:

.navi a:link,
.navi a:active,
.navi a:visited {