Advertisement
Home Open Editor ❯

HTML <video> width Attribute

Example

<video width="340" height="260" controls>
  <source src="video.mp4" type="video/mp4">
  <source src="video.webm" type="video/webm">
  Your browser does not support the video tag.
</video>

Try this code ❯

Meaning

The width attribute specifies the video display area, in CSS pixels.


Standard Syntax

<video width="pixels">...</video>


Advertisement

Attribute Values

Value Description
pixels Specifies width of the video. (ex: width="100")
Home Open Editor ❯
Advertisement