Код: Выделить всё
Код: Выделить всё
.percentage {
width: 100px;
border: .1px solid;
border-radius: 2px;
font-size: 1rem;
padding: 1px;
background-clip: content-box;
background-image: linear-gradient(
to right,
#cccc 50%,
transparent 0%
);
}
.percentage::before {
content: attr(data-percentage);
}
Код: Выделить всё
background-image: linear-gradient(
to right,
#cccc attr(data-percentage),
transparent 0%
);
https://jsfiddle.net/07gd82oe/
Подробнее здесь: https://stackoverflow.com/questions/798 ... -attribute
Мобильная версия