In this tutorial, we will introduce you to about width and height attribute of video tag.
In this tutorial, we will introduce you to about width and height attribute of video tag.The <video> tag use for embedding video in a web page. It has many attribute. But in this tutorial, we will introduce you to about the height and width attribute . They define height and width of media.
Attributes | Value | Description |
height | pixel | Define height of media. |
width | pixel | Define width of media. |
Declaration syntax of height and width attribute of video tag in HTML5.
<video poster="Image URL" > Content </video > OR <video srd="URL" >Content </video > |
<!doctype html > <html > <head> <title>Video Tag attributes.</title> </head> <body><p> <b>Implementation of height and width attribute of video tag in HTML5. </b></p> <video src="Video1.mp4" controls height="200px" width="250px"> Browser does not support video tag. </video > </body> </html> |
The video tag is only available in HTML5. It is not available in HTML4.01.