Latest web development tutorials

HTML meter min property

Tag Reference HTML meter HTML <meter> tag

Examples

With a measure of the current value and the min, max, high, low value:

<meter min="0" low="40" high="90" max="100" value="95"></meter>

try it"

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Firefox, Opera, Chrome and Safari 6 Support <meter> tag min property.


Definition and Usage

min attribute specifies the measure limit.

Min attribute value must be less than max value of the property.

If the value of the min property is not specified, the default value is 0.

Tip: min and max attribute specifies the property along the full range of measurement.


Differences between HTML 4.01 and HTML5

<Meter> tag is new in HTML5 tags.


grammar

<meter min="number">

Property Value

描述
number 规定一个表示度量的最小值的浮点数。默认值是 "0"。


Tag Reference HTML meter HTML <meter> tag