Skip to content

Instantly share code, notes, and snippets.

@sylvaincombes
Created April 1, 2015 10:30
Show Gist options
  • Save sylvaincombes/7af7966668ce9d53b366 to your computer and use it in GitHub Desktop.
Save sylvaincombes/7af7966668ce9d53b366 to your computer and use it in GitHub Desktop.
Responsive embedded video
/**
* Fluid embedded video via iframe / embed / object techniques
* Works fine with just these css rules, if you want accurate results you can add a pinch of javascript too
*
* @see https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php
*/
/* <RESPONSIVE IFRAME / EMBED / OBJECT VIDEOS> */
.video-container {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
padding-top: 25px;
height: 0;
}
.video-container iframe,
.video-container embed,
.video-container object {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* </RESPONSIVE IFRAME / EMBED / OBJECT VIDEOS> */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment