Explain me how will you create a stacked progress bar using bootstrap?
Answer / Areena Asraf
To create a stacked progress bar in Bootstrap, you can use the Progress component and specify the `height` option to make it stacked. Here's an example:
```
<div class="progress-stacked">
<div class="progress">
<div id="progressBar1" class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100" style="height: 30px;">
70%
</div>
</div>
<div class="progress">
<div id="progressBar2" class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="30" aria-valuemin="0" aria-valuemax="100" style="height: 30px;">
30%
</div>
</div>
</div>
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain me what is bootstrap breadcrumb?
What are bootstrap 4 forms?
Popular term ‘mobile first design’ was introduced in bootstrap from beginning?
What is button group and which class is used for basic button group?
What is bootstrap carousel? Explain
What is bootstrap caraousel?
What is the purpose of using the scrollspy plugin?
Would you differentiate between fluid layout & responsive layout?
What are bootstrap alerts?
How many colors in bootstrap 4?
Do you know who developed the bootstrap?
Does bootstrap reset css?