Skip to content

Instantly share code, notes, and snippets.

@waynebcox
Last active August 9, 2016 20:28
Show Gist options
  • Save waynebcox/868c31f148b96c986d69720bdd3f9baa to your computer and use it in GitHub Desktop.
Save waynebcox/868c31f148b96c986d69720bdd3f9baa to your computer and use it in GitHub Desktop.
Responsive iframe container
<div class="responsive-container">
<iframe src="https://www.youtube.com/embed/IHvqjtpM-Vk?rel=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
/* 16x9 Aspect Ratio */
.responsive-container {
position: relative;
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
}
.responsive-container iframe {
position: absolute;
top:0;
left: 0;
width: 100%;
height: 100%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment