meter low Attribute - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:meter

Description

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.

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:

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 w ww  .  j a v  a2  s  .co m-->
</html>

Related Tutorials