<PROGRESS>
Tag Description
<progress> is a structural element used to define work in progress. New in HTML5.
Code Example
<progress max="100" value="55">
<span>55</span>
</progress>
Result
Attributes
| Attribute | Value | Description |
|---|---|---|
| max | number | Specifies the value of completion |
| value | number | Specifies the current value |
Browser Support
| Browser | Comment |
|---|---|
| Firefox | Yes |
| Safari | Yes |
| Chrome | Yes |
| Opera | Yes |
| IE 9 | Yes |
| IE <= 8 | No |
Notes
Useful Links
Title
details
