Posted by dorayme on 10/15/06 22:02
In article <egtadj$6h0$1@area.cu.mi.it>,
Dan Marino <astemio@despammed.com> wrote:
> a {text-decoration: none; color: inherit;}
>
> works well in Firefox - the link text is not different from the non-link
> text.
>
> in IE6, the color of the link text is the standard horrific blue.
Best to set the colours you want directly, till you have more
confidence in what is inherited from what. And while at it, set
something for the hover, the active and visited for those
browsers that implement this css. And don't forget to set a
background colour too to avoid surprises. For example:
a {
color: #009;
background: #fff;
}
a:visited {
color: #909;
background: #fff;
}
etc
--
dorayme
[Back to original message]
|