Skip to content

Instantly share code, notes, and snippets.

@richjenks
Created April 16, 2016 07:57
Show Gist options
  • Save richjenks/4eaa7abc8f11ee4a3989df634baa3cea to your computer and use it in GitHub Desktop.
Save richjenks/4eaa7abc8f11ee4a3989df634baa3cea to your computer and use it in GitHub Desktop.
Responsive iframe
.responsive-iframe {
position: relative;
padding-bottom: 56.25%; /* 16:9 */
height: 0;
}
.responsive-iframe iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
<div class="responsive-iframe">
<iframe src="http://mapsengine.google.com/map/embed?mid=z-BEFzFo7gdM.kYdiUKVQpQQI" width="640" height="480"></iframe>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment