/ Published in: CSS
URL: http://css-tricks.com/snippets/css/retina-display-media-query/
I needed a quick way to target high-resolution graphics. Here was my final solution
Expand |
Embed | Plain Text
/* High Resolution artwork*/ @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) { }
You need to login to post a comment.
