Austin Davis
Austin Davis

Reputation: 3756

IE link colors in Quirks Mode vs standard

Below are two links on where the underline is somewhat blueish and the other is the same color as the text
Link Colors

with the following code html
<font color="#003300"> CLX qualifications...</font></a>

and I'm having trouble replicating how links are rendered in Quirks Mode when I want to render my page in IE standards. This is also happening to my links when, I run my page in firefox as well.

Upvotes: 0

Views: 60

Answers (1)

Jason Sperske
Jason Sperske

Reputation: 30416

It looks like the font color is overriding the default a:visited style. This CSS should work for your needs:

a, a:hover, a:visited {
  color: #003300;
}

Here is a demo (also you can drop your use of the font tag which is alwasy a good thing)

Upvotes: 1

Related Questions