2
votes

According to Brett Jankord's Cross Browser Retina/High Resolution Media Queries

Windows 8 phones do not support any of the device-pixel-ratio media queries.

Is there another way to target windows phones with css?

(I don't mind if all windows phones get the hi-res images)

1
Adding CSS and CSS3 tags suddendly raised your audience from 610 to 32.000 readers ;)Andrea Ligios

1 Answers

1
votes

The article then goes on saying that IE does support min-resolution but only with dpi

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and ( min-resolution: 192dpi),
only screen and ( min-resolution: 2dppx) {
    /* Retina-specific stuff here */
}