Advertisement
Guest User

Untitled

a guest
Nov 27th, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. a {
  2. position: relative;
  3. &:after {
  4. content: "";
  5. display: inline-block;
  6. position: absolute;
  7. bottom: -5px;
  8. left: 50%;
  9. // Don't work 'width: 0;' on IE10!!!
  10. width: 0%;
  11. height: 1px;
  12. background-color: currentColor;
  13. transform: translateX(-50%);
  14. transition: width .3s;
  15. }
  16. &:hover:after {
  17. width: 100%;
  18. }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement