Skip to content

Instantly share code, notes, and snippets.

@giannwilk
Created November 26, 2013 14:56
Show Gist options
  • Save giannwilk/7659722 to your computer and use it in GitHub Desktop.
Save giannwilk/7659722 to your computer and use it in GitHub Desktop.
CSS3: Smooth Link Hover
a {
text-decoration: none;
color: #08C;
transition: all 0.3s ease-out;
position: relative;
padding: .5em;
margin: -.5em;
}
a:hover { color: #0AF; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment