` in a standard Bootstrap column or apply one of the standard Bootstrap width
classes.
```html
Default width
Custom widths
```
The height of the progress bar can be controlled with the `height` prop. The height value should be
a standard CSS dimension (`px`, `rem`, `em`, etc.). The default height is `1rem`.
```html
Default height
Custom heights
```
## Backgrounds
Use background variants to change the appearance of individual progress bars. The default variant is
`primary`.
### Solid background variants
```html
```
### Striped backgrounds
Set `striped` to apply a stripe via CSS gradient over the progress bar's background variant.
```html
{{ striped ? 'Remove' : 'Add' }} Striped
```
### Animated backgrounds
The striped gradient can also be animated by setting the `animated`prop.
```html
{{ animate ? 'Stop' : 'Start' }} Animation
```
Notes:
- if `animated` is true, `striped` will automatically be enabled.
- Animated progress bars don't work in Opera 12 — as they don't support CSS3 animations.
- The animation effect of this component is dependent on the `prefers-reduced-motion` media query.
See the [reduced motion section of our accessibility documentation](/docs/reference/accessibility)
for additional details.
## Multiple bars
Include multiple `` sub-components in a `` component to build a
horizontally stacked set of progress bars.
```html
```
`` will inherit most of the props from the `` parent component, but you
can override any of the props by setting them on the ``
Notes:
- `height`, if specified, should always set on the `` component.
- `` will not inherit `value` from ``.