Reputation: 668
I need to show percentage of the Bootstrap progress bar on the left side like this:
My HTML:
<span>76%</span>
<div class="progress bar-wrapper">
<div class="progress-bar skill-bar" role="progressbar" style="width: 76%"
aria-valuenow="76"
aria-valuemin="0" aria-valuemax="100">Photoshop
</div>
</div>
Any way I can put in on the left side outside the bar? Using Bootstrap 4
Upvotes: 0
Views: 2005
Reputation: 272797
Simply create a flex container since you are using V4 of Bootstrap:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
<div class="d-flex align-items-center p-2">
<span class="p-1">76%</span>
<div class="progress bar-wrapper w-100 ">
<div class="progress-bar skill-bar" role="progressbar" style="width: 76%" aria-valuenow="76" aria-valuemin="0" aria-valuemax="100">Photoshop
</div>
</div>
</div>
Upvotes: 2