Html 5 Meter low Attribute Tag

The <meter> low attribute tag is used to indicate low size of vale.The <meter> low attribute value is low.The value of the low attribute must be greater than or equal to zero when the min attribute is absent.

Syntax:

<meter low = "...">... </meter>

Example Code

<!DOCTYPE HTML>
<meter value="0.7" high="0.9" low="0.1" optimum="0.5">70%</meter>

Out Put :



70%

In the above example meter low attribute value is 0.7 and high is 0.9 and low is 0.1 and optimum is 0.5.





Content