HTML <meter> high Attribute
Definition and Usage
high
The attribute defines the range of the gauge value considered as high.
high
Attribute values must be less than max Attribute values must be greater than low and min Attribute values.
Example
A gauge with the current value and minimum, maximum, high, and low values:
<p><label for="anna">Xiao Ming's Score:</label> <meter id="anna" min="0" low="40" high="90" max="100" value="95"></meter></p> <p><label for="peter">Xiao Mei's Score:</label> <meter id="peter" min="0" low="40" high="90" max="100" value="65"></meter></p> <p><label for="linda">Xiaofeng's Score:</label> <meter id="linda" min="0" low="40" high="90" max="100" value="35"></meter></p>
Syntax
<meter high="number">
Attribute Value
Value | Description |
---|---|
number | The value is considered as a high floating-point number. |
Browser Support
The numbers in the table indicate the first browser version that fully supports this attribute.
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
8.0 | 13.0 | 16.0 | 6.0 | 11.5 |