Advertisement
Home Open Editor ❯

HTML <meter> low Attribute

Example

<p><label for="a">A score:</label>
<meter id="a" min="0" low="40" high="90" max="100" value="60"></meter></p>

<p><label for="b">B score:</label>
<meter id="b" min="0" low="40" high="90" max="100" value="85"></meter></p>

Try this code ❯

Meaning

low attribute holds a float value that indicates the low range of the measurement.

This must be greater than the minimum value (min attribute), and it also must be less than the high value and maximum value (high attribute and max attribute, respectively), if any are specified. If unspecified, or if less than the minimum value, the low value is equal to the minimum value.


Standard Syntax

<meter value="number" low="number">...</meter>


Advertisement

Attribute Values

Value Description
number Specifies a floating number.
Home Open Editor ❯
Advertisement