The HTML high attribute
Quick answer
The HTML high attribute sets the value at and above which the measurement is considered "high". It is used on the <meter> element.
Overview
Syntax
<meter min="0" max="100" low="30" high="70" value="85"></meter>
Values
| Value |
|---|
| A number within the meter's range. |
Example
<meter min="0" max="100" low="30" high="70" optimum="90" value="85"></meter>
Best practices
Frequently asked questions
What does the high attribute do?
Sets the high boundary of a meter.
How do the low, high and optimum attributes work?
They split the range into segments so the browser can color the gauge — for example green in the optimum zone and red when poor.
What is the difference between meter and progress?
<meter> shows a measurement within a range; <progress> shows how far along a task is.
Which elements use the high attribute?
It is an element-specific attribute, used on the <meter> element.