I want to customize the bootstrap progress bar with text at the beginning and end, like this:
5 star ----------------------------------------------- 70%
Here is my attempt to achieve this:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<div class="progress-1 d-flex flex-row align-items-center">
<div class="stars">
<span>5 <i class="fa fa-star"></i></span>
</div>
<div class="progress" style="height: 3px;">
<div class="progress-bar bg-success" role="progressbar" style="width: 5%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div>
<div class="percent">
<span>70%</span>
</div>
</div>