Skip to content

Instantly share code, notes, and snippets.

@etoxin
Created June 6, 2016 02:07
Show Gist options
  • Save etoxin/4984a25a2d6a303691586967edb1b470 to your computer and use it in GitHub Desktop.
Save etoxin/4984a25a2d6a303691586967edb1b470 to your computer and use it in GitHub Desktop.
Responsive Video
<div class="video-wrapper">
<iframe width="560" height="315" src="https://www.youtube.com/embed/jEnd8JIMii4?rel=0&amp;controls=0&amp;showinfo=0" frameborder="0" allowfullscreen></iframe>
</div>
.video-wrapper {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
iframe {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment