Basic Progress

Wrap bootstrap progress bar by .progress-wrap class to create space between two progress-bar

With Labels

Add labels to your progress bars by placing text within the .progress-bar.

25%
50%
75%
100%

Height

Use .h-{sm|md|lg|xl} with .progress class to change the height

Backgrounds

Use background utility classes to change the appearance of individual progress bars.

Multiple bars

Include multiple progress bars in a progress component if you need.

Striped

Add .progress-bar-striped to any .progress-bar to apply a stripe via CSS gradient over the progress bar’s background color.

Animated stripes

The striped gradient can also be animated. Add .progress-bar-animated to .progress-bar to animate the stripes right to left via CSS3 animations.

Progress Bar Source Code

<div class="progress-wrap">
    <div class="progress">
        <div class="progress-bar bg-success progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div>
    </div>
</div>