+2 votes
in Bootstrap by
How will you create a alternate progress bar using bootstrap?

1 Answer

0 votes
by

To create a progress bar with different styles -

Add a <div> with a class of .progress.

Next, inside the above <div>, add an empty <div> with a class of .progress-bar and class progress-bar-* where * could be success, info, warning, danger.

Add a style attribute with the width expressed as a percentage. Say for example, style = "60%"; indicates that the progress bar was at 60%.

Related questions

0 votes
asked Oct 7, 2019 in Bootstrap by Tracy Williams
+2 votes
asked Jun 1, 2020 in Bootstrap by SakshiSharma
...