Links are Hyperlinks, and have 4 different state like link, visited, hover and active. Style can be applied individually in these states.
Example
/* unvisited */
a:link {
color: blue;
}
/* link visited */
a:visited {
color: black;
}
/* mouse cursor on link */
a:hover {
color: red;
}
/* selected */
a:active {
color: green;
}