Definición y Uso
La width atributo especifica la anchura del elemento, en píxeles.
Nota: Para los elementos de entrada, el width atributo se utiliza sólo con <input type="image"> .
Se aplica a
El width atributo se puede utilizar en los siguientes elementos:
Elementos | Atributo |
---|---|
<canvas> | width |
<embed> | width |
<iframe> | width |
<img> | width |
<input> | width |
<object> | width |
<video> | width |
Ejemplos
Canvas Ejemplo
Un <canvas> elemento con una altura y anchura de 200 píxeles:
<canvas id="myCanvas" width="200" height="200" style="border:1px solid">
Inténtalo tú mismo " Embed Ejemplo
Una animación flash con una altura y anchura de 200 píxeles:
<embed src="helloworld.swf" width="200" height="200">
Inténtalo tú mismo " Iframe Ejemplo
Un <iframe> con una altura y anchura de 200 píxeles especificado:
<iframe src="/default.html" width="200"
height="200"></iframe>
Inténtalo tú mismo " Img Ejemplo
Una imagen con una altura y una anchura de 42 píxeles:
<img src="smiley.gif" alt="Smiley face"
height="42" width="42">
Inténtalo tú mismo " Input Ejemplo
Definir una imagen como el botón de enviar, con los atributos de altura y anchura:
<form action="demo_form.asp">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="image" src="img_submit.gif" alt="Submit" width="48"
height="48">
</form>
Inténtalo tú mismo " Object Ejemplo
Una animación flash con una altura y anchura de 400 píxeles ::
<object data="helloworld.swf" width="400" height="400"></object>
Inténtalo tú mismo " Video Ejemplo
Un reproductor de vídeo con una anchura y altura especificadas:
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Inténtalo tú mismo " Soporte para el navegador
El width
atributo tiene el siguiente soporte de los navegadores para cada elemento:
Elemento | |||||
---|---|---|---|---|---|
canvas | 4.0 | 9.0 | 2.0 | 3.1 | 9.0 |
embed | Sí | Sí | Sí | Sí | Sí |
iframe | Sí | Sí | Sí | Sí | Sí |
img | Sí | Sí | Sí | Sí | Sí |
input | 1.0 | Sí | 16.0 | Sí | 1.0 |
object | Sí | Sí | Sí | Sí | Sí |
width | Sí | Sí | Sí | Sí | Sí |