This page is describing the attributes assigned only to progress and meter elements of HTML5 elements.
Attributes and related elements:
max attribute:
min attribute:
value attribute:
high attribute:
low attribute:
optimum attribute:
form attribute:
Attribute characteristics and purpose:
- <progress>: indicates how much progress is needed to be done before completion; the default value 1.0, but if set to 100 it will represent 100%
- <meter>: defines the maximum value of the gauge's range; if omitted it will be '1'
- <meter>: defines the minimum value of the gauge's range; If omitted it will be '0'
- <progress>: indicates the current status of the progress bar and, in relation to max attribute, it is a percentage of the maximum number (limited to max attribute's number)
- <meter>: this value is required and it specifies a current value (as a number) of the gauge (<meter>).
- <meter>: defines a high value of the range and it is not required
- <meter>: defines a low value of the range and it is not required
- <meter>: defines what value is considered as optimal for the range
- <meter>: specifies one or more of the forms (<form>) that the meter will be assigned to; the value must be a form id attribute; if more than one than they are separated by comma.
Example
Example that includes progress and meter elements attributes:
Comments
No comments have been made yet.
Please login to leave a comment. Login now