Open In App
Related Articles

HTML <video> width Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

 3The HTML video width Attribute is used to specify the width of the video player in terms of pixels. Always specify the width and the height of the video else web page will be confused that how much space that video will be required due to that reason web page become slow down.

Syntax: 

<video width="pixels">

Attribute Values: 

  • pixels: It specify the width of the video player in terms of pixels.

Note: Downsizing a large size video with the height and width attributes forces users to download the original video. The best way to rescale videos is with a program, before using it on a page.

Below Example illustrates the use of width attribute in <video> Element. 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML video width Attribute
    </title>
</head>
 
<body style="text-align: center">
 
    <h1 style="color: green">
        GeeksforGeeks
    </h1>
     
    <h3>
        HTML Video width Attribute
    </h3>
    <br>
 
    <video id="Test_Video" width="400" height="240" controls>
        <source src = "gfg.mp4" type = "video/mp4">
    </video>
 
</body>
 
</html>                   


Output:

  

Supported Browsers: The browser supported by HTML video width 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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 15 Jul, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials