HTML CSS examples for HTML Tag:meter
The high attribute sets the range where the meter's value is considered to be a high value between max attribute value and the low and min attribute values.
Value | Description |
---|---|
number | Specifies a floating point number that is considered to be a high 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 ww w . ja v a 2 s. com--> </html>