0
How can I change style of <meter>?
I used â mater{ ..... } But it doesnât work.
2 Answers
+ 2
this may help you
https://stackoverflow.com/questions/8094835/how-to-style-html5-meter-tag
+ 1
The <meter> tag is one of the HTML5 elements. The tag defines a scalar measurement in the known range or graphic representation of a fractional number. The tag can be used when it is necessary to display, for example, the level of battery charge, disk usage, etc. To use the <meter> tag, you need to know the maximum value.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<meter value="4" min="0" max="10">4 out of 10</meter> 4 Out of 10<br>
<meter value="0.75">75%</meter> 75%
</body>
</html>