Skip to content

Instantly share code, notes, and snippets.

@charleslouis
Created February 17, 2015 09:04
Show Gist options
  • Save charleslouis/a14baf083fa38a63df14 to your computer and use it in GitHub Desktop.
Save charleslouis/a14baf083fa38a63df14 to your computer and use it in GitHub Desktop.
Fluid Width Video
.videoWrapper {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
<!--
Source : CSS TRICKS
http://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
-->
<div class="videoWrapper">
<!-- Copy & Pasted from YouTube -->
<iframe width="560" height="349" src="http://www.youtube.com/embed/n_dZNLr2cME?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