TUTORIAL HOME
Bootstrap Progress Bars
❮ Previous Next ❯
Basic Progress Bar
A progress bar can be used to show a user how far along he/she is in a process.
Bootstrap provides several types of progress bars.
A default progress bar in Bootstrap looks like this:
70% Complete
To create a default progress bar, add a .progress class to a
Example
aria-valuemin=”0″ aria-valuemax=”100″ style=”width:70%”>
70% Complete
»
Note: Progress bars are not supported in Internet Explorer 9 and earlier (because they use CSS3 transitions and animations to achieve some of their effects).
Note: To help improve accessibility for people using screen readers, you should include the aria-* attributes.
Progress Bar With Label
A progress bar with a label looks like this:
70%
Remove the .sr-only class from the progress bar to show a visible percentage:
Example
aria-valuemin=”0″ aria-valuemax=”100″ style=”width:70%”>
70%
»
Colored Progress Bars
Contextual classes are used to provide “meaning through colors”.
The contextual classes that can be used with progress bars are:
.progress-bar-success
.progress-bar-info
.progress-bar-warning
.progress-bar-danger
40% Complete (success)
50% Complete (info)
60% Complete (warning)
70% Complete (danger)
The following example shows how to create progress bars with the different contextual classes:
Example
aria-valuemin=”0″ aria-valuemax=”100″ style=”width:40%”>
40% Complete (success)
aria-valuemin=”0″ aria-valuemax=”100″ style=”width:50%”>
50% Complete (info)
aria-valuemin=”0″ aria-valuemax=”100″ style=”width:60%”>
60% Complete (warning)
aria-valuemin=”0″ aria-valuemax=”100″ style=”width:70%”>
70% Complete (danger)
»
Striped Progress Bars
Progress bars can also be striped:
40% Complete (success)
50% Complete (info)
60% Complete (warning)
70% Complete (danger)
Add class .progress-bar-striped to add stripes to the progress bars:
Example
aria-valuenow=”40″ aria-valuemin=”0″ aria-valuemax=”100″ style=”width:40%”>
40% Complete (success)
