HTML low Attribute

❮ HTML Attributes

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>

Meaning

The 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

<element value="number" low="number">



Browser Support




Status




Applies to:

The low attribute can be used on the following element:

Element Attribute
<meter> low






Attribute Values

Value Description
number Specifies a floating number.
❮ HTML Attributes