A min attribute on a <meter> element.
The value of this meter must be at least the minimum value specified.
<div>Pressure reading</div>
<br />
<meter min="1" max="25" value="14">14/25</meter>
The min attribute specifies the lower bound or starting value of the gauge.
The value of the <min attribute must be less than the max attribute.
If not set, the meter element will use 0 as minimum value.
<meter min="number">
Value | Description |
---|---|
number | Minimum value. Default is 0. |
Here is when min support started for each browser:
Chrome
|
8.0 | Dec 2010 |
Firefox
|
16.0 | Oct 2012 |
IE/Edge
|
13.0 | Nov 2015 |
Opera
|
11.5 | May 2011 |
Safari
|
6.0 | Jul 2012 |
Back to <meter>