2014-07-12 00:45:11 +02:00
---
2015-08-15 07:45:55 +02:00
layout: docs
2014-07-12 00:45:11 +02:00
title: Progress
2016-10-03 03:19:47 +02:00
description: Documentation and examples for using Bootstrap progress bars.
2015-08-06 02:47:45 +02:00
group: components
2014-07-12 00:45:11 +02:00
---
2016-12-29 23:56:28 +01:00
Use our custom progress component for displaying simple or complex progress bars. We don't use [the HTML5 `<progress>` element ](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress ), ensuring you can stack progress bars, animate them, and place text labels over them.
2014-07-12 00:45:11 +02:00
2015-05-29 10:58:52 +02:00
## Contents
* Will be replaced with the ToC, excluding the "Contents" header
{:toc}
2016-12-29 23:56:28 +01:00
## How it works
2014-07-12 00:45:11 +02:00
2016-12-29 23:56:28 +01:00
Progress components are built with two HTML elements, some CSS to set the width, and a few attributes.
- 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.
2016-12-31 06:43:16 +01:00
- The `.progress-bar` requires an inline style, utility class, or custom CSS to set their width.
2016-12-29 23:56:28 +01:00
- The `.progress-bar` also requires some `role` and `aria` attributes to make it accessible.
Put that all together, and you have the following examples.
2016-02-08 09:31:10 +01:00
2014-07-12 00:45:11 +02:00
{% example html %}
2016-12-29 23:56:28 +01:00
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" aria-valuenow = "0" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 25%" aria-valuenow = "25" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 50%" aria-valuenow = "50" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 75%" aria-valuenow = "75" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 100%" aria-valuenow = "100" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
{% endexample %}
2016-02-07 22:13:06 +01:00
2017-01-03 18:38:25 +01:00
Bootstrap provides a handful of [utilities for setting width ]({{ site.baseurl }}/utilities/sizing/ ). Depending on your needs, these may help with quickly configuring progress.
2016-12-31 06:43:16 +01:00
{% example html %}
< div class = "progress" >
< div class = "progress-bar w-75" role = "progressbar" aria-valuenow = "75" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
{% endexample %}
2016-12-29 23:56:28 +01:00
## Customizing
2016-02-07 22:13:06 +01:00
2016-12-29 23:56:28 +01:00
Customize the appearance of your progress bars with custom CSS, background utilities, stripes, and more.
2016-02-07 22:13:06 +01:00
2016-12-29 23:56:28 +01:00
### Labels
2016-02-07 22:13:06 +01:00
2016-12-29 23:56:28 +01:00
Add labels to your progress bars by placing text within the `.progress-bar` .
2016-02-07 22:13:06 +01:00
2016-12-29 23:56:28 +01:00
{% example html %}
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 25%;" aria-valuenow = "25" aria-valuemin = "0" aria-valuemax = "100" > 25%< / div >
< / div >
2014-07-12 00:45:11 +02:00
{% endexample %}
2016-12-29 23:56:28 +01:00
### Height
2014-07-12 00:45:11 +02:00
2016-12-29 23:56:28 +01:00
We only set a `height` value on the `.progress-bar` , so if you change that value the outer `.progress` will automatically resize accordingly.
2014-07-12 00:45:11 +02:00
{% example html %}
2016-12-29 23:56:28 +01:00
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 25%; height: 1px;" aria-valuenow = "25" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 25%; height: 20px;" aria-valuenow = "25" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
{% endexample %}
### Backgrounds
Use background utility classes to change the appearance of individual progress bars.
{% example html %}
< div class = "progress" >
< div class = "progress-bar bg-success" role = "progressbar" style = "width: 25%" aria-valuenow = "25" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar bg-info" role = "progressbar" style = "width: 50%" aria-valuenow = "50" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar bg-warning" role = "progressbar" style = "width: 75%" aria-valuenow = "75" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar bg-danger" role = "progressbar" style = "width: 100%" aria-valuenow = "100" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
{% endexample %}
### Multiple bars
Include multiple progress bars in a progress component if you need.
{% example html %}
< div class = "progress" >
< div class = "progress-bar" role = "progressbar" style = "width: 15%" aria-valuenow = "15" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< div class = "progress-bar bg-success" role = "progressbar" style = "width: 30%" aria-valuenow = "30" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< div class = "progress-bar bg-info" role = "progressbar" style = "width: 20%" aria-valuenow = "20" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
2014-07-12 00:45:11 +02:00
{% endexample %}
### Striped
2016-12-29 23:56:28 +01:00
Add `.progress-bar-striped` to any `.progress-bar` to apply a stripe via CSS gradient over the progress bar's background color.
2014-07-12 00:45:11 +02:00
{% example html %}
2016-12-29 23:56:28 +01:00
< div class = "progress" >
< div class = "progress-bar progress-bar-striped" role = "progressbar" style = "width: 10%" aria-valuenow = "10" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar progress-bar-striped bg-success" role = "progressbar" style = "width: 25%" aria-valuenow = "25" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar progress-bar-striped bg-info" role = "progressbar" style = "width: 50%" aria-valuenow = "50" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar progress-bar-striped bg-warning" role = "progressbar" style = "width: 75%" aria-valuenow = "75" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
< div class = "progress" >
< div class = "progress-bar progress-bar-striped bg-danger" role = "progressbar" style = "width: 100%" aria-valuenow = "100" aria-valuemin = "0" aria-valuemax = "100" > < / div >
< / div >
2014-07-12 00:45:11 +02:00
{% endexample %}
2014-10-27 06:48:12 +01:00
### Animated stripes
2016-12-29 23:56:28 +01:00
The striped gradient can also be animated. Add `.progress-bar-animated` to `.progress-bar` to animate the stripes right to left via CSS3 animations.
2014-07-12 00:45:11 +02:00
2016-12-29 23:56:28 +01:00
**Animated progress bars don't work in Opera 12**—as they don't support CSS3 animations.
2014-07-12 00:45:11 +02:00
2015-04-16 23:07:20 +02:00
< div class = "bd-example" >
2016-12-29 23:56:28 +01:00
< div class = "progress" >
< div class = "progress-bar progress-bar-striped" role = "progressbar" aria-valuenow = "75" aria-valuemin = "0" aria-valuemax = "100" style = "width: 75%" > < / div >
< / div >
< button type = "button" class = "btn btn-secondary bd-toggle-animated-progress" data-toggle = "button" aria-pressed = "false" autocomplete = "off" >
2014-10-27 06:48:12 +01:00
Toggle animation
< / button >
< / div >
{% highlight html %}
2016-12-29 23:56:28 +01:00
< div class = "progress" >
< 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 >
< / div >
2014-10-27 06:48:12 +01:00
{% endhighlight %}