Progress

An indicator of how far along a process currently is.

Basic Usage

You can style progress elements by giving them the progress class.

HTML Copied!
<progress class="progress" value="50" max="100"></progress>

Indeterminate

To make a Progress bar indeterminate, omit the value attribute.

HTML Copied!
<progress class="progress"></progress>