Open In App

HTML | <video> height Attribute

Last Updated : 15 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML <video> height attribute is used to specify the height of the video player in terms of pixels. 

Syntax: 

<video height="pixels">

Attribute Values: It contains single value pixels which specifies the height of the video player in terms of pixels. 

Below example illustrates the use of height attribute in <video> element:

Example: 

html
<!DOCTYPE html> 
<html> 

<head> 
    <title> 
        HTML video height Attribute 
    </title> 
</head> 

<body style="text-align: center"> 

    <h1 style="color: green"> 
        GeeksforGeeks 
    </h1> 
    
    <h2> 
        HTML video height Attribute
    </h2> 
    <br> 

    <video id="Test_Video" width="360" height="200"
            controls> 
        <source src="sample_vid.mp4" type="video/mp4"> 
        <source src="sample_vid.ogg" type="video/ogg"> 
    </video> 
</body> 

</html>                    

Output:

  

Supported Browsers: The browser supported by HTML video height attribute are listed below:

  • Google Chrome 3 and above
  • Edge 12 and above
  • Internet Explorer 9 and above
  • Firefox 3.5 and above
  • Safari 3.1 and above
  • Opera 10.5 and above

Next Article

Similar Reads