How to specify starting value of <meter> tag not from zero?

61 Views Asked by At

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

1

There are 1 best solutions below

1
On

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>

enter image description here