Home > Article > Web Front-end > How to use html meter tag
html The meter tag is used to define a scalar measurement within a known range or fractional value. The
#html How to use meter tag?
Function: Define scalar measurements within a known range or fractional value.
Note: The
Note: The
html meter tag usage example
<!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>
Effect:
The above is the detailed content of How to use html meter tag. For more information, please follow other related articles on the PHP Chinese website!