When I use the style=width:60%to class .rating, the gold color should be filled with only 3 stars, and the rest of the stars should be empty, but this does not work. Please help me what is my mistake?
My html code is:
<div class="star">
<div class="rating" style="width:60%">
<span>☆</span>
<span>☆</span>
<span>☆</span>
<span>☆</span>
<span>☆</span>
</div>
</div>
My css code:
.star{ width:200px; position: relative;color: #bdbdbd;}
.rating span
{
font-size:30px;
margin-left:-4px;
white-space: nowrap;
overflow: hidden;
}
.rating span:before {
content:"\2605";
position: absolute;
color:gold;
}
CHECK violin link
source
share