I have this a the top of my css file
a {
color: inherit;
text-decoration: none;
}
In firefox this means I dont have to define a color for each instance of <a> (to avoid 'link purple') it will inherit the color from the surrounding div or p tag. But it does not work in IE all the links, unless otherwise specified, are purple. The underline part works fine.
Any ideas?
a {
color: inherit;
text-decoration: none;
}
In firefox this means I dont have to define a color for each instance of <a> (to avoid 'link purple') it will inherit the color from the surrounding div or p tag. But it does not work in IE all the links, unless otherwise specified, are purple. The underline part works fine.
Any ideas?