Created
April 1, 2015 10:30
-
-
Save sylvaincombes/7af7966668ce9d53b366 to your computer and use it in GitHub Desktop.
Responsive embedded video
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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