Html 5 Meter Max Attribute Tag

The <meter> max attribute tag is used to indicate max size of vale for meter tag.The <meter> max attribute value is maximum.The max attribute is used consists with the min attribute to include the full range of the meter.The <meter> tag is new in HTML5.Default Max value is "1.0".

Syntax:

<meter max = "...">... </meter>

Example Code

<!DOCTYPE HTML>
<meter min="30" max="70" value="50"> 50 within 30 and 70 </meter>

Out Put :



50 within 30 and 70

In the above example meter max attribute value is 70 and value is 50 and min is 30.





Content