Hier ist eine Sammlung von Medienabfragen, mit denen Sie dies für jede Version von Internet Explorer (von IE6 bis IE11 +), Firefox, Chrome und Safari (BEARBEITEN: auch Opera hinzugefügt) ausführen können.
IE 6
* html .ie6 { property: value; }
oder
.ie6 { _property: value; }
IE 7
*+html .ie7 { property: value; }
oder
*:first-child+html .ie7 { property: value; }
IE 6 und 7
@media screen\9 {
.ie67 {
property: value;
}
}
oder
.ie67 { *property: value; }
oder
.ie67 { #property: value; }
IE 6, 7 und 8
@media \0screen\,screen\9 {
.ie678 {
property: value;
}
}
IE 8
html>/**/body .ie8 { property: value; }
oder
@media \0screen {
.ie8 {
property: value;
}
}
IE 8-Standardmodus
.ie8 { property /*\**/: value\9 }
IE 8,9 und 10
@media screen\0 {
.ie8910 {
property: value;
}
}
Nur IE 9
@media screen and (min-width:0\0) and (min-resolution: .001dpcm) {
// IE9 CSS
.ie9{
property: value;
}
}
IE 9 und höher
@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
// IE9+ CSS
.ie9up {
property: value;
}
}
IE 9 und 10
@media screen and (min-width:0\0) {
.ie910 {
property: value\9;
} /* backslash-9 removes ie11+ & old Safari 4 */
}
Nur IE 10
_:-ms-lang(x), .ie10 { property: value\9; }
IE 10 und höher
_:-ms-lang(x), .ie10up { property: value; }
oder
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up {
property:value;
}
}
IE 11 (und höher ..)
_:-ms-fullscreen, :root .ie11up { property: value; }
Firefox (jede Version)
@-moz-document url-prefix() {
.ff {
color: red;
}
}
Firefox (nur Quantum / Stylo)
@-moz-document url-prefix() {
@supports (animation: calc(0s)) {
/* Stylo */
.ffStylo {
property: value;
}
}
}
Firefox Legacy (Pre-Stylo)
@-moz-document url-prefix() {
@supports not (animation: calc(0s)) {
/* Gecko */
.ffGecko {
property: value;
}
}
}
Webkit (Chrome & Safari, jede Version)
@media screen and (-webkit-min-device-pixel-ratio:0) {
property: value;
}
Google Chrome (29+)
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
.chrome {
property: value;
}
}
Safari (7.1+)
_::-webkit-full-page-media, _:future, :root .safari_only {
property: value;
}
Safari (von 6.1 bis 10.0)
@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) {
@media {
.safari6 {
color:#0000FF;
background-color:#CCCCCC;
}
}
}
Safari (10.1+)
@media not all and (min-resolution:.001dpcm) {
@media {
.safari10 {
color:#0000FF;
background-color:#CCCCCC;
}
}
}
Oper (12+)
@media (min-resolution: .001dpcm) {
_:-o-prefocus, .selector {
.opera12 {
color:#0000FF;
background-color:#CCCCCC;
}
}
}
Oper (11 und niedriger)
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
.opera11 {
color:#0000FF;
background-color:#CCCCCC;
}
}
Weitere Informationen oder zusätzliche Medienanfragen finden Sie auf der Website browserhacks.com und / oder in diesem Blogbeitrag , den ich zu diesem Thema verfasst habe.