Created
March 1, 2018 01:14
-
-
Save Ostii/323e05e6f9577f22bd075e894d8bfe0f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
/* | |
this following code is for making iframes responsive | |
*/ | |
.intrinsic-container { | |
position: relative; | |
height: 0; | |
overflow: hidden; | |
} | |
/* 16x9 Aspect Ratio */ | |
.intrinsic-container-16x9 { | |
padding-bottom: 56.25%; | |
} | |
/* 4x3 Aspect Ratio */ | |
.intrinsic-container-4x3 { | |
padding-bottom: 75%; | |
} | |
.intrinsic-container 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