Created
January 22, 2021 04:21
-
-
Save Rameshwar-ghodke/ad8f26d069579d168c45638032421352 to your computer and use it in GitHub Desktop.
on Menu item - mouse hover show transition effect on website
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
.navbar-nav li a:after { | |
content: ''; | |
display: block; | |
height: 2px; | |
background: #fff; | |
-webkit-transition: all 0.4s ease; | |
transition: all 0.4s ease; | |
-webkit-transform: scale(0); | |
transform: scale(0); | |
margin-top: 4px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment