Skip to content

Instantly share code, notes, and snippets.

@eculver
Created February 23, 2011 01:38
Show Gist options
  • Save eculver/839822 to your computer and use it in GitHub Desktop.
Save eculver/839822 to your computer and use it in GitHub Desktop.
CSS3 hover transitions
a {
-moz-transition: color 500ms ease;
-ms-transition: color 500ms ease;
-o-transition: color 500ms ease;
-webkit-transition: color 500ms ease;
transition: color 500ms ease;
}
a:link { color: #ff8500; }
a:hover { color: #fff; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment