English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Reference Manual

Complete List of HTML Tags

HTML meter optimum property

The optimum property specifies the range of gauge values to be considered as the optimal value

 HTML <meter> tag

Online Example

The optimal value is 0.6Gauge:

<!DOCTYPE html>
<html>
<head>
<title>HTML:<meter> optimum property - Basic Tutorial Website(oldtoolbag.com)<//title>
</head>
<body>
<p>Display a gauge:</p>
<p><meter value="0.3" high="0.9" low="0.1" optimum="0.6></meter></p>
</body>
</html>
Test and see ‹/›

Browser Compatibility

IEFirefoxOperaChromeSafari

Firefox, Opera, Chrome, and Safari 6 Supports the optimum attribute of the <meter> tag.

Definition and Usage

The optimum attribute specifies the range of the gauge's value as the best value.

HTML 4.01 with HTML5differences

The <meter> tag is an HTML5 in the new tag.

Syntax

<meter optimum="number">

Attribute Value

ValueDescription
numberSpecifies a floating-point number, which is the best value for the gauge.
 HTML <meter> tag