Yves
Yves

Reputation: 12497

How do you display hyperlinks without an underline?

How do you display hyperlinks without an underline ?

Upvotes: 2

Views: 36797

Answers (3)

Joseph
Joseph

Reputation: 25513

Apply this style:

text-decoration: none;

Upvotes: 4

Richard Simões
Richard Simões

Reputation: 12791

a:link, a:visited {
   text-decoration:none;
}

Upvotes: 4

Michael Todd
Michael Todd

Reputation: 17041

a:link {
    text-decoration: none;
    color: #0000CC;
}
a:visited {
    text-decoration: none;
    color: #0000CC;
}
a:hover {
    text-decoration: underline;
}
a:active {
    text-decoration: underline;
}

(Or at least that's how we do it.)

Oh, and the order above matters, by the way.

Upvotes: 15

Related Questions