Last active
August 29, 2015 14:19
-
-
Save jeremymouton/7e48d126fbefda8ba3da to your computer and use it in GitHub Desktop.
Animated link underline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.animated-link { | |
display: inline-block; | |
text-decoration: none; | |
&:after { | |
transition: width .2s ease; | |
content: ''; | |
display: block; | |
border-bottom: 1px #000 solid; | |
width: 0; | |
} | |
&:hover:after { | |
width: 100%; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fiddle: https://jsfiddle.net/46a8u/639/