Created
June 28, 2020 13:20
-
-
Save yousifalraheem/04accad7259839ce043888a32920564c to your computer and use it in GitHub Desktop.
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
/** 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