Created
June 5, 2017 06:01
-
-
Save stanruss/8474949f5e33fb5502d582d1bf127bb1 to your computer and use it in GitHub Desktop.
Плавное подчеркивание ссылок
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
.объект | |
position: relative | |
.объект:after | |
display: block | |
position: absolute | |
left: 0 | |
bottom: -10px | |
width: 0 | |
height: 10px | |
background-color: #980044 | |
content: "" | |
transition: width 0.2s | |
.объект:hover:after | |
width: 100% |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment