revision:
The optimum attribute specifies the range where the gauge's value is considered to be an optimal value.
The optimum attribute can be used on the following element: <meter> and must be within the range i.e between min and max. When it is used with the "low"and "high" attribute, it gives an indication where along the range it is considered preferable.
<meter optimum="number"></meter>
number: specifies a floating point number that is the optimal value of the gauge
<p class="spec"><label for="yinyang">Yin Yang:</label> <meter id="yinyang" value="0.3" high="0.9" low="0.1" optimum="0.5"></meter></p>
optimum value below low and high:
optimum value between low and high:
optimum value above low and high:
<p class="spec"> optimum value below low and high: <meter value="0.6" max="0.9" min="0.1" optimum="0.1" high = "0.5" low = "0.2"></meter> </p> <p class="spec">optimum value between low and high: <meter value="0.6" max="0.9" min="0.1" optimum="0.4" high = "0.5" low = "0.2"></meter> </p> <p class="spec">optimum value above low and high: <meter value="0.6" max="0.9" min="0.1" optimum="0.6" high = "0.5" low = "0.2"></meter> </p>