Modifying anchors with CSS
Here's an anchor to the index page
Definitions
a:link
ordinary link that hasn't been visted yet, mouse isn't over it
a:visited
A link that has been visited within this section, mouse isn't over it
a:hover
A link of any type that has the mouse currently over it
Notes
- These are pseudo classes They aren't actually classes,
but they change based on some characteristic of the element
- The order in which you define the anchor types is important! Be
sure to go link, visted, hover. Any other order might not
work.
- You can apply any styles you wish to the various link types to
give the classic mouseover effect
- Background and border changes are most effective