Skip to content

Instantly share code, notes, and snippets.

@bepatrickdavid
Last active April 23, 2018 09:40
Show Gist options
  • Save bepatrickdavid/1c0416437aab53b04446 to your computer and use it in GitHub Desktop.
Save bepatrickdavid/1c0416437aab53b04446 to your computer and use it in GitHub Desktop.
CSS: IE FIrefox Safari Hack
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10+ specific styles go here */
.example {
overflow: visible !important;
}
}
@supports (-ms-accelerator:true) {
/* Edge */
}
@supports (-ms-ime-align:auto) {
/* Edge */
}
@-moz-document url-prefix() {
.example {
}
}
/* Safari 9+ */
@media screen and (min-color-index:0)
and(-webkit-min-device-pixel-ratio:0) {
.example {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment