Skip to content

Instantly share code, notes, and snippets.

@Ostii
Created March 1, 2018 01:14
Show Gist options
  • Save Ostii/323e05e6f9577f22bd075e894d8bfe0f to your computer and use it in GitHub Desktop.
Save Ostii/323e05e6f9577f22bd075e894d8bfe0f to your computer and use it in GitHub Desktop.
/*
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