Created
January 28, 2018 14:13
-
-
Save 0632347878/6779ee36a53229988aa1bb6493b0499a to your computer and use it in GitHub Desktop.
on hover underline from center
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::after { | |
position: absolute; | |
left: 50%; | |
right: 50%; | |
height: 3px; | |
bottom: -10px; | |
content: ""; | |
background-color: #00e8bb; | |
-webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); | |
-o-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); | |
/* transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); */ | |
/* -webkit-transform: translate3d(0, 0, 0); */ | |
/* transform: translate3d(0, 0, 0); */} | |
a:hover::after { | |
left: 0; | |
right: 0; | |
} | |
.outer a { position: relative; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment