I am currently working on implementing a rating system using the font-awesome fa-heart class. While I have successfully colored the full heart, I am facing difficulty in filling only the first half of the heart in red. Despite my research efforts, all solutions involve stars instead of half hearts and do not utilize font-awesome.
Unfortunately, I am limited to using font awesome version 4.0.3 and cannot upgrade...
Does anyone know a clever workaround for this issue?
.full {
color: red;
}
.half {
}
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.0.3/css/font-awesome.min.css">
<div class="rating-love ">
<span class="fa fa-heart full"></span>
<span class="fa fa-heart full"></span>
<span class="fa fa-heart full"></span>
<span class="fa fa-heart full"></span>
<span class="fa fa-heart half"></span>
<a href="#reviews"><span>23 Review(s)</span></a>
</div>