Voici une collection de requêtes multimédias qui vous permettront de le faire pour n'importe quelle version d'Internet Explorer (d'IE6 à IE11 +), Firefox, Chrome et Safari (EDIT: également ajouté Opera).
IE 6
* html .ie6 { property: value; }
ou
.ie6 { _property: value; }
IE 7
*+html .ie7 { property: value; }
ou
*:first-child+html .ie7 { property: value; }
IE 6 et 7
@media screen\9 {
.ie67 {
property: value;
}
}
ou
.ie67 { *property: value; }
ou
.ie67 { #property: value; }
IE 6, 7 et 8
@media \0screen\,screen\9 {
.ie678 {
property: value;
}
}
IE 8
html>/**/body .ie8 { property: value; }
ou
@media \0screen {
.ie8 {
property: value;
}
}
Mode standard IE 8
.ie8 { property /*\**/: value\9 }
IE 8,9 et 10
@media screen\0 {
.ie8910 {
property: value;
}
}
IE 9 uniquement
@media screen and (min-width:0\0) and (min-resolution: .001dpcm) {
// IE9 CSS
.ie9{
property: value;
}
}
IE 9 et supérieur
@media screen and (min-width:0\0) and (min-resolution: +72dpi) {
// IE9+ CSS
.ie9up {
property: value;
}
}
IE 9 et 10
@media screen and (min-width:0\0) {
.ie910 {
property: value\9;
} /* backslash-9 removes ie11+ & old Safari 4 */
}
IE 10 uniquement
_:-ms-lang(x), .ie10 { property: value\9; }
IE 10 et supérieur
_:-ms-lang(x), .ie10up { property: value; }
ou
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ie10up {
property:value;
}
}
IE 11 (et supérieur ..)
_:-ms-fullscreen, :root .ie11up { property: value; }
Firefox (toute version)
@-moz-document url-prefix() {
.ff {
color: red;
}
}
Firefox (Quantum uniquement / Stylo)
@-moz-document url-prefix() {
@supports (animation: calc(0s)) {
/* Stylo */
.ffStylo {
property: value;
}
}
}
Firefox Legacy (pré-Stylo)
@-moz-document url-prefix() {
@supports not (animation: calc(0s)) {
/* Gecko */
.ffGecko {
property: value;
}
}
}
Webkit (Chrome et Safari, toute 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 (de 6.1 à 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;
}
}
}
Opéra (12+)
@media (min-resolution: .001dpcm) {
_:-o-prefocus, .selector {
.opera12 {
color:#0000FF;
background-color:#CCCCCC;
}
}
}
Opera (11 et moins)
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
.opera11 {
color:#0000FF;
background-color:#CCCCCC;
}
}
Pour de plus amples informations ou des questions supplémentaires sur les médias, visitez le site Web browserhacks.com et / ou consultez cet article de blog que j'ai écrit sur ce sujet.