CSS Links
« Previous | Next Chapter » |
Links can be styled in different ways.
Styling Links
Links can be styled with any CSS property (e.g. color, font-family, background, etc.).
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
- a:active - a link the moment it is clicked
Example
Try it yourself » |
When setting the style for several link states, there are some order rules:
- a:hover MUST come after a:link and a:visited
- a:active MUST come after a:hover
Common Link Styles
In the example above the link changes color depending on what state it is in.
Lets go through some of the other common ways to style links:
Text Decoration
The text-decoration property is mostly used to remove underlines from links:
Example
Try it yourself » |
Background Color
The background-color property specifies the background color for links:
Example
Try it yourself » |
More Examples |
Add different styles to hyperlinks
This example demonstrates how to add other styles to hyperlinks.
Advanced - Create link boxes
This example demonstrates a more advanced example where we combine several CSS properties to display links as boxes.
« Previous | Next Chapter » |