Reputation: 2411
The following line displays with a black underline in IE, but a blue one in other browsers:
body {
color: black;
}
a:link, a:visited {
color: #2883DE;
}
<u>
<a href="link">TITLE</a>
</u>
How can I get it to render blue in all browsers?
Upvotes: 0
Views: 130
Reputation: 30
Q: How do I get it to render blue in all browsers?
A: It is a very simple fix. You add css for and color: blue
u{
color: blue;
}
Upvotes: 1