color, font-family, and background-color).
Special for links are that they can be styled differently depending on what state they are in.
The four links states are:
a:link—a normal, unvisited link,a:visited—a link the user has visited,a:hover—a link when the user mouses over it, anda:active—a link the moment it is clicked. a:link { color:#FF0000; } /* unvisited link */
a:visited { color:#00FF00; } /* visited link */
a:hover { color:#FF00FF; } /* mouse over link */
a:active { color:#0000FF; } /* selected link */
When setting the style for several link states, there are some order rules:
a:hover MUST come after a:link and a:visited and
a:active MUST come after a:hover. a:link { text-decoration:none; }
a:visited { text-decoration:none; }
a:active { text-decoration:underline; }
a:visited { background-color:#FFFF85; }
a:hover { background-color:#FF704D; }
a:active { background-color:#FF704D; }
|
If everywhere you go, there’s a problem. Guess what! |