Link Colors
By default, unvisited links are blue and underlined, visited links are purple and underlined, and active links turn red and are underlined.
Click to Learn
Example
Unvisited links are green, visited links pink, active links yellow and underlined, and hovering turns links red with an underline.
<style> a:link { color: green; background-color: transparent; text-decoration: none; }
a:visited { color: pink; background-color: transparent; text-decoration: none; }
a:hover { color: red; background-color: transparent; text-decoration: underline; }
a:active { color: yellow; background-color: transparent; text-decoration: underline; } </style>
|