Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stanruss/8474949f5e33fb5502d582d1bf127bb1 to your computer and use it in GitHub Desktop.
Save stanruss/8474949f5e33fb5502d582d1bf127bb1 to your computer and use it in GitHub Desktop.
Плавное подчеркивание ссылок
.object
position: relative
text-decoration: none
.object:after
display: block
position: absolute
left: 0
bottom: -5px
width: 0
height: 2px
background-color: #000
content: ""
transition: width 0.2s
.object:hover:after
width: 100%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment