Skip to content

Instantly share code, notes, and snippets.

@ojacobson
Created August 10, 2013 22:43
Show Gist options
  • Save ojacobson/6202515 to your computer and use it in GitHub Desktop.
Save ojacobson/6202515 to your computer and use it in GitHub Desktop.
@media (max-width: 767px) {
// cribbed from http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio
// and also #comment-764668376 on that page. Horrifying CSS.
#map-container {
display: inline-block;
position: relative;
}
#map-container:before {
content: "";
display: block;
padding-top: 75%;
}
svg.map {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment