HTML CSS examples for HTML Tag:meter
The optimum attribute sets the range to be considered as an optimal value.
Value | Description |
---|---|
number | Specifies a floating point number that is the optimal value of the gauge |
The following code shows how to create a meter with an optimal value of 0.5:
<!DOCTYPE html> <html> <body> <p>Display a gauge:</p> <p><meter value="0.3" high="0.9" low="0.1" optimum="0.5"></meter></p> </body><!-- www. jav a 2 s .co m--> </html>