Skip to content

Instantly share code, notes, and snippets.

@dkruchok
Created July 22, 2015 11:17
Show Gist options
  • Save dkruchok/90d558cc41a3d938426b to your computer and use it in GitHub Desktop.
Save dkruchok/90d558cc41a3d938426b to your computer and use it in GitHub Desktop.
CSS IE hacks
@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