HTML <meter> min 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>
Meaning
min attribute holds a float value that indicates the minimum range of the measurement.
Note: This must be less than the maximum value (max attribute), if specified. If unspecified, the minimum value is 0(default).
Standard Syntax
<meter value="number" min="number">...</meter>
Advertisement
Attribute Values
| Value | Description |
|---|---|
| number | Specifies a floating number. |