• We use the .progress as a wrapper to indicate the max value of the progress bar.
  • We use the inner .progress-bar to indicate the progress so far.
  • The .progress-bar requires an inline style, utility class, or custom CSS to set their width.
  • The .progress-bar also requires some role and aria attributes to make it accessible.

Put that all together, and you have the following examples.

Bootstrap provides a handful of utilities for setting width. Depending on your needs, these may help with quickly configuring progress.

Progress - 图2

  1. <div class="progress">
  2. <div class="progress-bar w-75" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>

Labels

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

  1. <div class="progress">
  2. <div class="progress-bar" role="progressbar" style="width: 25%;" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100">25%</div>
  3. </div>

We only set a height value on the .progress, so if you change that value the inner .progress-bar will automatically resize accordingly.

Backgrounds

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

Progress - 图5

  1. <div class="progress-bar bg-success" role="progressbar" style="width: 25%" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
  2. </div>
  3. <div class="progress">
  4. <div class="progress-bar bg-info" role="progressbar" style="width: 50%" aria-valuenow="50" aria-valuemin="0" aria-valuemax="100"></div>
  5. </div>
  6. <div class="progress">
  7. <div class="progress-bar bg-warning" role="progressbar" style="width: 75%" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100"></div>
  8. </div>
  9. <div class="progress">
  10. <div class="progress-bar bg-danger" role="progressbar" style="width: 100%" aria-valuenow="100" aria-valuemin="0" aria-valuemax="100"></div>
  11. </div>

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

  1. <div class="progress-bar" role="progressbar" style="width: 15%" aria-valuenow="15" aria-valuemin="0" aria-valuemax="100"></div>
  2. <div class="progress-bar bg-success" role="progressbar" style="width: 30%" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100"></div>
  3. <div class="progress-bar bg-info" role="progressbar" style="width: 20%" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100"></div>
  4. </div>

Striped

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

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 - 图8

  1. <div class="progress">
  2. <div class="progress-bar progress-bar-striped progress-bar-animated" role="progressbar" aria-valuenow="75" aria-valuemin="0" aria-valuemax="100" style="width: 75%"></div>
  3. </div>

Sass

  1. $progress-height: 1rem;
  2. $progress-font-size: $font-size-base * .75;
  3. $progress-bg: $gray-200;
  4. $progress-border-radius: $border-radius;
  5. $progress-box-shadow: $box-shadow-inset;
  6. $progress-bar-color: $white;
  7. $progress-bar-bg: $primary;
  8. $progress-bar-animation-timing: 1s linear infinite;

Keyframes

Used for creating the CSS animations for .progress-bar-animated. Included in .