How do you display hyperlinks without an underline ?
+15
A:
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.
Michael Todd
2009-08-12 18:19:24
+1 for instant reply. Thanks.
Kombucha
2009-08-12 18:21:00
+1 for making me learn something new ("Oh, and the order above matters, by the way.") and another +1 (if possible :P) for excellent reply.
Zack
2009-08-12 18:48:59