Links styling in CSS
Posted
by misha-moroshko
on Stack Overflow
See other posts from Stack Overflow
or by misha-moroshko
Published on 2010-04-10T03:38:11Z
Indexed on
2010/04/10
3:43 UTC
Read the original article
Hit count: 397
Hello,
Why the following styling of the link does not work ?
<html>
<head>
<style type="text/css">
a:link {color:#123456;} /* unvisited link */
</style>
</head>
<body>
<a href="http://www.google.com">Visit Google</a>
</body>
</html>
Thanks !
© Stack Overflow or respective owner