English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The low attribute specifies the point at which the gauge value is defined as low, the value of the low attribute must be greater than the value of the min attribute, and must be less than the values of the high and max attributes.
A gauge with current value and min, max, high, low values:
<!DOCTYPE html> <html> <head> <title>HTML: <meter> low attribute - 基础教程网(oldtoolbag.com)</title> </head> <body> <p>Display a gauge:/p> <p>Anna's score: <meter min="0" low="40" high="90" max="100" value="95></meter></p> <p>Peter's score: <meter min="0" low="40" high="90" max="100" value="65></meter></p> <p>Linda's score: <meter min="0" low="40" high="90" max="100" value="35></meter></p> </body> </html>Test to see ‹/›
IEFirefoxOperaChromeSafari
Firefox, Opera, Chrome, and Safari 6 Supports the 'low' attribute of the <meter> tag.
The 'low' attribute specifies the point at which the value of the measurement is considered to be low.
The value of the 'low' attribute must be greater than the value of the 'min' attribute, and it must be less than the values of 'high' and 'max' attributes.
The <meter> tag is an HTML5 in the new tag.
<meter low="number">
Value | Description |
---|---|
number | Specifies a floating-point number considered to be low. |