HTML <meter> low Attribute
Definition and Usage
low
Attribute defines the range of gauge values considered to be low.
low
Attribute values must be greater than min Attribute values must be less than high and max Attribute values.
Example
Gauge with 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 low="number">
Attribute Value
Value | Description |
---|---|
number | Specifies a floating-point number considered to be low. |
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 |