El atributo de valor <meter> en HTML se utiliza para especificar el valor actual del indicador. El valor especificado debe estar entre el atributo mínimo y máximo.
Sintaxis:
<meter value="number">
Valor de atributo: este atributo contiene un número de valor único que se requiere. Se utiliza para especificar el número de coma flotante que es el valor actual del indicador.
Ejemplo 1: Este ejemplo muestra el medidor de salud.
html
<!DOCTYPE html> <html> <head> <title> HTML meter value Attribute </title> </head> <body style = "text-align:center"> <h1 style = "color:green;"> GeeksforGeeks </h1> <h2> HTML meter value Attribute </h2> Health: <meter min="0" low="40" high="90" max="100" value="60"></meter> </body> </html>
Producción:
Ejemplo 2: Este ejemplo muestra el medidor de salud que es muy, muy bajo.
html
<!DOCTYPE html> <html> <head> <title> HTML meter value Attribute </title> </head> <body style = "text-align:center"> <h1 style = "color:green;"> GeeksforGeeks </h1> <h2> HTML meter value Attribute </h2> Health: <meter min="0" low="33" high="66" max="100" optimum="80" value="10"></meter> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de valor <meter> se enumeran a continuación:
- Google cromo 6
- Borde 18
- Firefox 16
- Ópera 11
- Safari 6
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA