Slide 5.8: CSS fonts (cont.)
Slide 5.10: CSS lists
Home

CSS Links


Links can be styled with any CSS property (e.g., 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: For example,
   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: Common Link Styles
In the example above the link changes color depending on what state it is in. Two of the other common ways to style links are
Demonstration
The following demonstration shows how the script of HTML and CSS is displayed on the Web: