-
-
Save kreo/3db279365dbb8a620028e7547a633bcb to your computer and use it in GitHub Desktop.
blog - Animated Multiline Link Underlines with CSS - code
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 { | |
| 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