Fully responsive HTML5 video Fully responsive HTML5 video jquery jquery

Fully responsive HTML5 video


Use width and max-height on the <video> element:

/*CSS*/ video {  width: 100%;  max-height: 100%;}
<!-- HTML --><div id="player-overlay">  <video>    <source src="../static/video/10s.mp4" />    <source src="../static/video/10s.webm" type='video/webm; codecs="vp8, vorbis"' />    <source src="../static/video/10s.ogv" type='video/ogg; codecs="theora, vorbis"' />  </video>    </div>