< pre class="snippet-code-css lang-css Prettyprint-override">
Код: Выделить всё
.about {
height: 50px;
width: 200px;
text-align: center;
}
.about:hover::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background-color: blue;
transform: scaleX(0);
/* Initially hidden */
transition: width .5s;
/* Smooth transition on hover */
display: block;
}
.about:hover::before {
width: 100%;
transform: scaleX(1);
/* Expand on hover */
transition: all .5s;
}Код: Выделить всё
AboutПодробнее здесь: https://stackoverflow.com/questions/793 ... with-width
Мобильная версия