Код: Выделить всё
div {
border-right: black 1px solid;
padding: 2px;
width: 150px;
}
.underline {
cursor: pointer
position: relative;
text-decoration: none;
background: linear-gradient(
to right,
green 0%, /* Green */
green 75%, /* Green */
red 75%, /* Red */
red /* Red */
) no-repeat 0 100%;
background-size: 0 2px;
transition: background-size 400ms;
}
.underline:hover {
background-size: 100% 2px;
}Код: Выделить всё
This text
This another, multiline text
Подробнее здесь: https://stackoverflow.com/questions/784 ... rline-text
Мобильная версия