Skip to content

Instantly share code, notes, and snippets.

@jaykz52
Created December 15, 2010 03:49
Show Gist options
  • Save jaykz52/741602 to your computer and use it in GitHub Desktop.
Save jaykz52/741602 to your computer and use it in GitHub Desktop.
An example of how we traditionally handle the various anchor states
a {
text-decoration: none;
color: green;
}
a:hover {
text-decoration: underline;
}
a:active {
color: purple;
}
a:visited {
color: yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment