How can I change style of <meter>? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can I change style of <meter>?

I used ↓ mater{ ..... } But it doesn’t work.

18th Oct 2021, 12:00 PM
Fꫀⲅძ᥆͟ᥙ᥉᯽
Fꫀⲅძ᥆͟ᥙ᥉᯽ - avatar
2 Answers
+ 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>
18th Oct 2021, 3:56 PM
Arun Jamson
Arun Jamson - avatar