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 the gauge value to be considered as the optimal value

 HTML <meter> etiqueta

Online example

The optimal value is 0.6Ruler:

<!DOCTYPE html>
<html>
<head>
<title>HTML:<meter> optimum property - Sitio web de tutoriales básicos(oldtoolbag.com)</title>/title>
</head>
<body>
<p>Mostrar un medidor:</p>
<p><meter value="0.3" high="0.9" low="0.1" optimum="0.6></meter></p>
</body>
</html>
Ver la prueba ‹/›

Compatibilidad del navegador

IEFirefoxOperaChromeSafari

Firefox, Opera, Chrome y Safari 6 Soporta la propiedad optimum de la etiqueta <meter>.

Definición y uso

La propiedad optimum de la etiqueta <meter> especifica el rango de valores que se consideran valores óptimos.

HTML 4.01 y HTML5diferencias entre

La etiqueta <meter> es HTML5 nueva etiqueta en

Sintaxis

<meter optimum="number">

Valor de atributo

ValorDescripción
numberEspecifica un número de coma flotante, que es el valor óptimo del medidor.
 HTML <meter> etiqueta