Skip to content

Instantly share code, notes, and snippets.

@iba-cmsteam
Created April 19, 2017 14:03
Show Gist options
  • Save iba-cmsteam/2418abf57b29788d4e7fea23c0c19a92 to your computer and use it in GitHub Desktop.
Save iba-cmsteam/2418abf57b29788d4e7fea23c0c19a92 to your computer and use it in GitHub Desktop.
CSS.gradient underlines
a {
position: relative;
padding-bottom: 2px;
text-decoration: none;
}
a:hover::after {
content: "";
position: absolute;
bottom: 2px;
left: 0;
height: 1px;
width: 100%;
background: #444;
background: linear-gradient(left, transparent 0%,#444 50%,transparent 100%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment