+ 2
What is difference between a meter gauge and a progress bar?
I am learning html but don't know the difference between a meter gauge and progress bar
3 Respuestas
+ 1
+ 1
Meter element is used to measure a data within a given range (for example disk usage). The meter tag should not be used to indicate a progress. For that purpose we use the progress bar. It represent the completion progress of a task.
More about the HTML meter and progress tag:
https://www.w3schools.com/tags/tag_meter.asp
https://www.w3schools.com/tags/tag_progress.asp
+ 1
Lennie thanks