Skip to content

Instantly share code, notes, and snippets.

@yousifalraheem
Created June 28, 2020 13:20
Show Gist options
  • Save yousifalraheem/04accad7259839ce043888a32920564c to your computer and use it in GitHub Desktop.
Save yousifalraheem/04accad7259839ce043888a32920564c to your computer and use it in GitHub Desktop.
/** Internet Explorer */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
div {
display: block;
}
}
/** Microsoft Edge */
@supports (-ms-ime-align: auto) {
div {
display: block;
}
}
/** Mozilla Firefox */
@-moz-document url-prefix() {
div
display: block;
}
}
/** Safari */
@media not all and (min-resolution: 0.001dpcm) {
div
display: block;
}
}
/** Chrominum */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
div:not(*:root) {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment