Created
April 27, 2016 09:10
-
-
Save qzm/294245a47f73cf4c231696fbdd7149a4 to your computer and use it in GitHub Desktop.
link style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.className { | |
/* 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; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment