Created
March 5, 2019 12:23
-
-
Save danfascia/4aeb2e4653669baebc41e418b2c498dc to your computer and use it in GitHub Desktop.
Animated underline from left to right on links
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
a { | |
color: #C0281C; | |
text-decoration: none; | |
background-image: linear-gradient(currentColor, currentColor); | |
background-position: 0% 100%; | |
background-repeat: no-repeat; | |
background-size: 0% 2px; | |
transition: background-size .3s; | |
} | |
a:hover, | |
a:focus { | |
background-size: 100% 2px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment