Skip to content

Instantly share code, notes, and snippets.

@alancoleman
Last active October 13, 2015 03:18
Show Gist options
  • Save alancoleman/4130903 to your computer and use it in GitHub Desktop.
Save alancoleman/4130903 to your computer and use it in GitHub Desktop.
Link mouse over transition effect using CSS3
a {
color: #A32713;
text-decoration: none;
-webkit-transition: color .4s;
-moz-transition: color .4s;
-ms-transition: color .4s;
-o-transition: color .4s;
transition: color .4s;
}
a:focus,
a:active,
a:hover {
text-decoration: none;
color:#151515;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment