|
Posted by Michael Winter on 10/15/06 22:03
Dan Marino wrote:
> a {text-decoration: none; color: inherit;}
[snip]
> in IE6, the color of the link text is the standard horrific blue. is there
> any way (a wrapper, a javascript library, a voodoo rite) to make IE6 behave
> in the correct way?
Specify the colour explicitly. A pain, I know, but relying on something
else (like scripting) isn't sensible, in my opinion.
You can always append the anchor to the selectors of relevant rules to
avoid too much duplication:
#some-element, #some-element a {
color: #rrggbb;
}
Mike
Navigation:
[Reply to this message]
|