Skip to content

Instantly share code, notes, and snippets.

@chicgeek
Created July 22, 2014 10:33
Show Gist options
  • Save chicgeek/f5d859f5c53503b27b8d to your computer and use it in GitHub Desktop.
Save chicgeek/f5d859f5c53503b27b8d to your computer and use it in GitHub Desktop.
Responsive video embed
$('.somelocalselector iframe').removeAttr('height width').wrap('<div class="video"/>');
.video {
position: relative;
padding-bottom: 56.5%;
margin-top: 2em;
}
.video 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