Look what I stumbled upon:
Important: Remember, a:hover MUST be placed after a:link and a:visited in the CSS code to work properly!!
Remember: Place a:active after a:hover for it to have an effect in the CSS code!!
Note: Pseudo-class names are not case-sensitive.
So, does this mean that the following is WRONG?
a:link, a:visited, a:active {
color: #006699;
text-decoration: none;
}
a:hover {
color: #2089CC;
text-decoration: underline;
}
Unfortunately, the reference can be found at: http://www.w3schools.com/css/css_pseudo_classes.asp
If you're unsure why 'unfortunately', please check out