Suppose, I want to specify (highlight) the range of meter tag from 0.4 to 0.6 values. How can I do that?
<meter max="0.6" min="0.4"></meter>
I want to do something like this:
Meter with range
Suppose, I want to specify (highlight) the range of meter tag from 0.4 to 0.6 values. How can I do that?
<meter max="0.6" min="0.4"></meter>
I want to do something like this:
Meter with range
Use the meter element to display a scalar value within a given range (a gauge):
<meter value="0.4" min="0.2" ax="0.6">0.4 out of 0.6</meter>