Created
September 5, 2019 03:01
-
-
Save pitabas106/7bb3a07a051d8e14c7fdde6251c6c18b to your computer and use it in GitHub Desktop.
Browser specific CSS
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
/* Firefox */ | |
@-moz-document url-prefix() { | |
body { | |
color: #f00; | |
} | |
} | |
/* Safari & Chrome */ | |
@media screen and (-webkit-min-device-pixel-ratio:0) { | |
body { | |
color: #ccc; | |
} | |
} | |
/* IE 11 (and above) */ | |
_:-ms-fullscreen, :root .ie11up { | |
body { | |
color: #000; | |
} | |
} | |
/* IE 8,9 and 10 */ | |
@media screen\0 { | |
.ie8910 { | |
property: value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment