html meter tag


  Translation results:

UK[ˈmi:tə(r)] US[ˈmitɚ]

n.Meter; meter

v.To measure with an instrument

Third person singular: meters Plural: meters Present participle: metering Past tense: metered Past participle: metered

html meter tagsyntax

Function:Define a scalar measurement within a known range or fractional value.

Note: <meter> labels should not be used to indicate progress (in a progress bar). If labeling a progress bar, use the <progress> tag.

Note: The <meter> tag is a new tag in HTML 5.

html meter tagexample

<!DOCTYPE html>
<html>
<body>

<p>显示度量值:</p>
<meter value="3" min="0" max="10">3/10</meter><br>
<meter value="0.6">60%</meter>

<p><b>注释:</b>Internet Explorer 不支持 meter 标签。</p>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance

Popular Recommendations

Home

Videos

Q&A