Responsive Video Element

Make HTML video elements responsive using width and height:auto.

Preview

Code

<style>
video{
max-width:100%;
height:auto;
}
</style>

<video controls>
<source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">
</video>

More RWD Videos Examples (8)