Skip to content

Instantly share code, notes, and snippets.

@DevTarakanova
Created October 4, 2018 19:39
Show Gist options
  • Save DevTarakanova/a9c2c696ebcb83a89ba13854fb42fba2 to your computer and use it in GitHub Desktop.
Save DevTarakanova/a9c2c696ebcb83a89ba13854fb42fba2 to your computer and use it in GitHub Desktop.
КРАСИВОЕ CSS ПОДЧЕРКИВАНИЕ ЭЛЕМЕНТОВ
a{
display: inline-block;
position: relative;
text-decoration: none;
}
a::before{
display: block;
position: absolute;
content: "";
height: 2px;
width: 0;
background-color: red;
transition: width .5s ease-in-out, left .5s ease-in-out;
left: 50%;
bottom: 0;
}
a::after{
display: block;
position: absolute;
content: "";
height: 2px;
width: 0;
background-color: red;
transition: width .5s ease-in-out;
left: 50%;
bottom: 0;
}
a:hover::before{
width: 50%;
left: 0;
}
a:hover::after{
width: 50%;
}
<a href="#">ссылка</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment