HTML | <tipo de entrada=”rango”>

El HTML <input type=”range”> se utiliza para definir el control de un número ingresado por el usuario . Puede establecer restricciones en números o valores sin importancia que el usuario ingresará. Tiene un valor de rango predeterminado de 0 a 100. 

Sintaxis: 

<input type="range"> 

Ejemplo: 

html

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Input Type range
    </title>
</head>
<style>
    #Geek_p {
        font-size: 30px;
        color: green;
    }
</style>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>HTML <Input Type="range">
</h2>
    <input type="range"
           id="Geek_Range"
           value="90">
</body>
 
</html>

Producción:

  

Navegadores compatibles:

  • Google Chrome 4.0 y superior
  • Firefox 23.0 y superior
  • Borde 12.0 y superior
  • Ópera 11.0 y superior
  • Internet Explorer 10 y superior
  • Apple Safari 3.1 y superior

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *