Skip to content

Instantly share code, notes, and snippets.

@rk
Created October 14, 2010 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rk/627035 to your computer and use it in GitHub Desktop.
Save rk/627035 to your computer and use it in GitHub Desktop.
color transition on link state changing on a page
a {
-moz-transition: 0.2s color linear;
-webkit-transition: 0.2s color linear;
transition: 0.2s color linear;
color: #333;
}
a:hover {
color: #933;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment