Created
April 11, 2018 10:05
-
-
Save mrkkr/e60c7eff3d638edec548a041730a86b4 to your computer and use it in GitHub Desktop.
Responsive google maps container
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.map-responsive{ | |
overflow:hidden; | |
padding-bottom:56.25%; | |
position:relative; | |
height:0; | |
} | |
.map-responsive iframe{ | |
left:0; | |
top:0; | |
height:100%; | |
width:100%; | |
position:absolute; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="map-responsive"> | |
<iframe src="SOURCE_LINK" width="600" height="450" frameborder="0" style="border:0" allowfullscreen></iframe> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment