Плавное подчёркивание ссылки при наведении
CSS3 2016-11-02
194362
Санкт-Петербург
+79051803960
support@servicecore.ru

a {
line-height: 1;
display: inline-block;
color:#0085ba;
text-decoration:none;
cursor: pointer;
}
a:after {
display: block;
content: "";
height: 2px;
width: 0%;
background-color: #0085ba;
transition: width .3s ease-in-out;
}
a:hover:after,
a:focus:after {
width: 100%;
}
Напишите свой комментарий