1.

How we can create a progress bar using bootstrap?

Answer»

Progress bars are USED to show the progress of a particular task or the specific action to the user.

Here is the example of creating a progress bar with the VERTICAL gradient:-

Example

<div class="progress">

<div class="progress-bar" STYLE="width: 50%;">

<span class="sr-only">50% Complete</span>

</div>

</div>



Discussion

No Comment Found