Skip to content

Instantly share code, notes, and snippets.

@sebgates
Last active December 27, 2018 17:36
Show Gist options
  • Save sebgates/dc486438f3502e4b7d39 to your computer and use it in GitHub Desktop.
Save sebgates/dc486438f3502e4b7d39 to your computer and use it in GitHub Desktop.
Responsive Video CSS
//Copy this CSS in to your style sheet //
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 0px;
height: 0;
overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
//This is what you video HTML should look like //
<div class="video-container"><iframe width="752" height="423" src="http://www.youtube.com/embed/Vutz7vJYW4Q" frameborder="0" allowfullscreen></iframe></div>
//End//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment