Click to See Complete Forum and Search --> : Link color in iexplore


nc3b
04-21-2007, 07:41 AM
I want the color of the link to be inherited from the body. It works in firefox and opera but not in ie7 (haven't tested it yet in ie6).


body{
color:#FFFFFF;
}

a{
color:inherit;
}


Please help me. Thank you in advance

Fang
04-21-2007, 08:56 AM
Doesn't work in IE, just group the selectors.body, a {
color:#FFFFFF;
}
It does make it difficult for the user to distinguish body text from anchors.

nc3b
04-21-2007, 01:02 PM
Thank you.. This doesn't really help me, I wanted to easily change the color of everything through javascript, but it seems I have to rethink my approach