HTML CSS examples for HTML Tag:meter
The low attribute specifies the range where the gauge's value is considered to be a low value which is between the min attribute value and the high and max attribute values.
Value | Description |
---|---|
number | Specifies a floating point number that is considered to be a low value |
The following code shows how to create a meter with a current value and min, max, high, and low segments:
<!DOCTYPE html> <html> <body> <p>Display a gauge:</p> <p><meter min="0" low="40" high="90" max="100" value="95"></meter></p> </body><!--from w ww . j a v a2 s .co m--> </html>