Html 5 Meter Min Attribute Tag

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

Syntax:

<meter min = "...">... </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 min attribute value is 70 and value is 50 and min is 30.





Content