<div class="star-rating">Star Rating:
<div class="starOne">★</div>
<div class="starTwo">★</div>
<div class="starThree">★</div>
<div class="starFour">★</div>
<div class="starFive">★</div>
</div>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.star-rating {
position: relative;
display: flex;
justify-content: center;
align-items: center;
font-size: 60px;
}
.starOne, .starTwo, .starThree, .starFour, .starFive {
position: relative;
top:-5px;
}
.starOne, .starTwo, .starThree {
color: #e9c46a;
}
.starFour, .starFive {
color: #333;
}
.starFour:before {
content: '\2605';
position: absolute;
display: flex;
color: #e9c46a;
margin-left: 0;
width: 26px;
overflow: hidden;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.