Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Keeping in mind progressive enhancement, browser/device support, 'mobile-first', and multiple flavors of iOS 'retina' display ratios... Would this target correctly and still provide legacy support?

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { @import '2x'; }

I've seen this it looks almost TOO easy:

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi) { @import '2x'; }

Reference for min-resolution: http://www.w3.org/TR/css3-values/#resolution

share|improve this question
does my answer below help you in any way? – Ilan Biala Sep 5 '12 at 15:53

1 Answer

Since safari is webkit so is android, the second block of code would target the whole Apple lineup and any desktop with chrome/an android phone. THe first block of code targets all web browsers as well the previously mentioned.

And a tip for the code that goes within the brackets, you can put the code from the 2x.css file straight into those brackets. Not only will the browser parse and render the css faster because it is right after the media queries, but it will also prevent the use of @import statements which slow down the browser even more.

@media only screen and (-webkit-min-device-pixel-ratio: 2) and ( min-resolution: 192dpi) {
    body {
        background: brown;
    }

    #wrapper {
        background: green;
    } 
}

This is what you want to do when using media queries, and avoid using only screen and commas in between each specification, the and suffices.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.