Skip to content

Instantly share code, notes, and snippets.

@apmarshall
Created February 9, 2017 15:46
Show Gist options
  • Save apmarshall/5827fc81f6f5c8bbd08c1cbd787d791e to your computer and use it in GitHub Desktop.
Save apmarshall/5827fc81f6f5c8bbd08c1cbd787d791e to your computer and use it in GitHub Desktop.
Responsive i-frames
.iframe-container {
position: relative;
height: 0;
overflow: hidden;
margin-top: 16px;
margin-bottom: 16px;
}
.iframe-container-16x9 {
padding-bottom: 56.25%;
}
.iframe-cotainer-4x3 {
padding-bottom: 75%;
}
.iframe-container-10x9 {
padding-bottom: 90%;
}
.iframe-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