Definizione e utilizzo
L' height attributo specifica l'altezza dell'elemento, espressa in pixel.
Si applica a
L' height attributo può essere utilizzato sui seguenti elementi:
Elementi | Attributo |
---|---|
<height> | height |
<embed> | height |
<iframe> | height |
<img> | height |
<input> | height |
<object> | height |
<video> | height |
Esempi
Canvas Esempio
Un <canvas> elemento con un altezza e larghezza di 200 pixel:
<canvas id="myCanvas" width="200" height="200" style="border:1px solid">
Prova tu stesso " Embed Esempio
Un'animazione flash con una altezza e larghezza di 200 pixel:
<embed src="helloworld.swf" width="200" height="200">
Prova tu stesso " Iframe Esempio
Un <iframe> con una altezza e larghezza di 200 pixel specificato:
<iframe src="/default.html" width="200"
height="200">
</iframe>
Prova tu stesso " Img Esempio
Un'immagine con un'altezza e una larghezza di 42 pixel:
<img src="smiley.gif" alt="Smiley face"
height="42" width="42">
Prova tu stesso " Input Esempio
Definire un'immagine come il pulsante di invio, con height e width attributi:
<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>
Prova tu stesso " Object Esempio
Un'animazione flash con una altezza e larghezza di 400 pixel ::
<object data="helloworld.swf" height="400" width="400"></object>
Prova tu stesso " Video Esempio
Un giocatore video con una altezza e larghezza specificate:
<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>
Prova tu stesso " Supporto per il browser
L' height
attributo ha la seguente supporto del browser per ogni 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ì |
video | sì | sì | sì | sì | sì |