HTML default link color
3 answers
Even if you do not change the default color, it would be nice to specify a color so that it looks the same in all browsers. I would put something like this in the stylesheet:
a, span.link {
color: blue;
}
a:visited, span.visited {
color: purple;
}
a:active, span.active {
color: red;
}
Then you can style span
as links<span class="link">Your fake link</span>
+10