I'll try to sum this up as best as possible. I'm developing a web application which needs to be:
- Responsive, with emphasis in desktop and iPhone (retina display)
- Supportive of all modern browsers plus ie8 and ie9
- Server-efficient, meaning: as little JS and as many icons inside a sprite as possible
Targeting device width/height vs Targeting pixel ratio:
For the conditional CSS, I went for targeting pixel ratio instead of creating different layouts for specific platforms and devices or using the safari user agent. So I'm using @media (-webkit-min-device-pixel-ratio: 2) plus all my responsive styles.
Now I'm trying to decide how to deal with the images.
Two images for each background vs One image with background-resize
Because I want to keep the server request as fewer as possible, I'm using sprites (4 or 5 "stencils") instead of separate pngs (the SVG discussion is another thing!). But Background-size is NOT supported by IE8, a big portion of my users, so it needs a JS fallback like jquery.backgroundSize.js.
So:
Is the combination of sprites, conditional background-size and a JS fallback for IE8 the best option, from a performance and good-practise point of view?
I didn't find other questions with this specific (yet quite common nowadays) scenario. It's not intended as a discussion question, I'm more interested in knowing if there is an actual agreement on how to deal with the situation: Retina display, sprites, IE and JS.