Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PhamBaTrungThanh/ad9a80a88d4c81c33f6f03735f9fcb5a to your computer and use it in GitHub Desktop.
Save PhamBaTrungThanh/ad9a80a88d4c81c33f6f03735f9fcb5a to your computer and use it in GitHub Desktop.
multiline text decoration tricks
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 {
background-size: 100% 2px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment