I still stick to my comments, but that was the best I could come up with. Again, notthis is not entirely wrong. You are trying to figure it out.
So:
html, body {
background: blue;
}
@media all -webkit-device-pixel-ratio {
body {
background: black;
color: red;
font: bold 28px monospace;
}
}
@media not -webkit-device-pixel-ratio {
body {
background: lime;
}
}
http://jsfiddle.net/userdude/pyvYA/4/
EDIT
It was also suggested to work:
@media screen and (-webkit-min-device-pixel-ratio:0) {}
- , Chrome . , , , Firefox .
. , , , , , ; , , , , Chrome , .
Modernizr out, yepnope.js selectivzr.js. .