Skip to content

Instantly share code, notes, and snippets.

@mrcotter
Created May 11, 2016 07:38
Show Gist options
  • Save mrcotter/43e81c24bb9214afbbef22e16e933dd7 to your computer and use it in GitHub Desktop.
Save mrcotter/43e81c24bb9214afbbef22e16e933dd7 to your computer and use it in GitHub Desktop.
Make iframe responsive
.myIframe {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
margin-top: 30px;
margin-bottom: 30px;
height: 0;
overflow: auto;
-webkit-overflow-scrolling:touch;
}
.myIframe iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
<div class='myIframe' >
<iframe> </iframe>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment