How can I set a color only for half of the star? Like the image below?
<span className={"star"}>
★
</span>
How can I set a color only for half of the star? Like the image below?
<span className={"star"}>
★
</span>
body {
font-size: 60px;
}
.half {
display: inline-flex;
}
.half > div:first-child {
overflow: hidden;
width: 27px;
z-index: 1;
color: #f97d00;
}
.half > div:last-child {
position: relative;
margin-left:-27px;
}
<span class='half'><div>★</div><div>★</div>