English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Die low-Eigenschaft bestimmt,an welchem Punkt der Wert des Maßes sich befindet,der als niedrig definiert ist,der Wert der low-Eigenschaft muss größer sein als der Wert der min-Eigenschaft und muss kleiner sein als die Werte der high- und max-Eigenschaften.
Ein Maß mit der aktuellen Wert und min、max、high、low Werten:
<!DOCTYPE html> <html> <head> <title>HTML:<meter> low Eigenschaft - Grundlegende Anleitung Website(oldtoolbag.com)</title> </head> <body> <p>Ein Gauge anzeigen:</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 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 must be less than the values of the 'high' and 'max' attributes.
The <meter> tag is an HTML5 new tag in
<meter low="number">
Value | Description |
---|---|
number | Specify a floating-point number that is considered to be low. |