HTML: progress Tag
The progress
tag is used for a progress bar. For example, download completion, etc.
Attributes
value="number"
- Required.
max="number"
- Optional. Indicates the max value, if known.
Example 1
<progress value="0.3"></progress>
Example 2
<progress value="4" max="10"></progress>
Browser Support
- As of 2011-07-30, it is supported by Google Chrome, Opera.
- As of 2014-03-20, it is supported by Firefox.
- As of 2018-10-22, it is supported by all browsers.
Back to HTML Tags Complete List .