Lea Anna Davis schrieb:
Im trying to create an effect where some of the linked text (enclosing brackets in this case) change color when hovered. ... The following code works in Firefox but not IE -specifically IE 6.

|#menu a {
display:block;
color: #0000ff;
font-weight: bold;
text-decoration: none;
padding-top: 5px;
margin-left: 10px;
}

||#menu ||a:link .menuItemBracket, ||#menu ||a:visited .menuItemBracket {
color:#000000;
}

||#menu ||a:hover .menuItemBracket, ||#menu ||a:active .menuItemBracket {
color:#ff0000;
}

yes, IE6 is, say a little bit picky when it comes to pseudoclasses

#menu a:hover {background:1%;}

should fix it by announcing the :hover transition explicitly.

Ingo
______________________________________________________________________
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