The four links states are:
a:link
- a normal, unvisited linka:visited
- a link the user has visiteda:
bay lượn - a link when the user mouses over ita:active
- a link the moment it is clicked
Example
/* unvisited link */
a:link {
color: red;}
/* visited
link */
a:visited {
color: green;}
/* mouse over link */
a:hover {
color: hotpink;}
/* selected link */
a:active {
color: blue;}
- a:hover MUST come after a:link and a:visited
- a:active MUST come after a:hover
No comments:
Post a Comment