The high attribute on a <meter> tag sets the high value of the meter element.
Its value must be between the min and max values.
A high attribute on a <meter> element.
The gauge has a specfied high and low values.
<div>Pressure reading</div>
<br />
<meter min="1" max="10" low="2" high="8" value="7">7/10</meter>
The high attribute specifies the value that is considered high for the gauge.
The high value must be between the min and max values.
Similarly, the low value must also be between the min and max values.
How the low and high values are used is application specific. HTML only assigns the values.
<meter high="number">
| Value | Description |
|---|---|
| number | A whole or floating point number. |
Here is when high support started for each browser:
![]() Chrome
|
8.0 | Dec 2010 |
![]() Firefox
|
16.0 | Oct 2012 |
![]() IE/Edge
|
13.0 | Nov 2015 |
![]() Opera
|
11.5 | May 2011 |
![]() Safari
|
6.0 | Jul 2012 |
Back to <meter>