CSS LINK PROPERTIES TUTORIAL
Property: A:link
A:visited
A:active
A:hover
A:link
Defines the style for unvisited normal links. A:visited Defines the style for visited normal links. A:active
Defines the style for active link. A link becomes active, - once you click on it. A:hover
Defines the style for hovered links. A link is hovered, - when the mouse moves over it. Domain Name for SaleExample: A:link {text-decoration: none; color: #FF0000; }
A:visited {text-decoration: underline; color: #FF0000; }
A:hover {text-decoration: underline; font-weight:bold; }
A:active {text-decoration: none; color: #CCCCCC; }
|