Html 5 Meter High Attribute Tag

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

The value of the high attribute must be less than or equal to the value of the max attribute.The value of the high attribute must be less than or equal to one when the max attribute is absent.

Syntax:

<meter high="...">... </meter>

Example Code

<!DOCTYPE HTML>
<meter value="0.2" high ="high_name">20%</meter>

Out Put :




20%

In the above example meter high attribute is use to give to high_name.





Content