Skip to content

Instantly share code, notes, and snippets.

@benzimmer
Created June 23, 2015 08:55
Show Gist options
  • Save benzimmer/be02a5c3a52fb5d0a516 to your computer and use it in GitHub Desktop.
Save benzimmer/be02a5c3a52fb5d0a516 to your computer and use it in GitHub Desktop.
Responsive Video iframe embedding
.video-wrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
<div class="video-wrapper">
<iframe width="560" height="349" src="https://www.youtube.com/embed/6JZNvhCwKRE?rel=0&hd=1" frameborder="0" allowfullscreen></iframe>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment