Skip to content

Instantly share code, notes, and snippets.

@gavinmcfarland
Created April 21, 2020 10:27
Show Gist options
  • Save gavinmcfarland/18ebeadf3cfeaa3263501faa68554a9f to your computer and use it in GitHub Desktop.
Save gavinmcfarland/18ebeadf3cfeaa3263501faa68554a9f to your computer and use it in GitHub Desktop.
Creating responsive/fluid iframes
.iframe-container {
position: relative;
height: 0;
padding-bottom: 56%;
}
.iframe-container iframe {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment