meter high Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:meter

Description

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.

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:

Demo Code

ResultView the demo in separate window

<!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>

Related Tutorials