solerous
solerous

Reputation: 2411

<u> tag underline color not overridden by <a> color in IE

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

Answers (1)

Devin
Devin

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;
}

http://jsfiddle.net/ffwvffmy/

Upvotes: 1

Related Questions