El atributo HTML <input> width se utiliza para especificar el ancho del elemento <input>. Este atributo solo se usa para input type=”image” .
Sintaxis:
<input width="pixels">
Valores de atributo: contiene el valor, es decir, píxeles que especifican el ancho del elemento de entrada.
Ejemplo:
HTML
<!DOCTYPE html> <html> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>HTML Input width Attribute</h2> <input id="myImage" type="image" src= "https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" alt="Submit" width="48" height="48" /> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome 1.0
- Firefox 16.0
- Borde
- Ópera 1.0
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA