Created
July 22, 2015 11:17
-
-
Save dkruchok/90d558cc41a3d938426b to your computer and use it in GitHub Desktop.
CSS IE hacks
This file contains 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
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
/* IE10+ specific styles go here */ | |
.map-container svg { | |
position: static !important; | |
height: 500px !important; | |
width: 130% !important; | |
} | |
} | |
/* ie 8.9.10 */ | |
@media screen\0 { | |
.map-container svg { | |
position: static !important; | |
height: 500px !important; | |
width: 130% !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment