Skip to content

Instantly share code, notes, and snippets.

@nedrichards
nedrichards / high-dpi-media.css
Last active December 27, 2015 13:49 — forked from marcedwards/high-dpi-media.css
/* A media query that captures all currently shipping HiDPI devices To test: view http://bjango.com/articles/min-device-pixel-ratio/ on the offending device */
/* A media query that captures all currently shipping HiDPI devices
To test: view http://bjango.com/articles/min-device-pixel-ratio/ on the offending device */
@media only screen and (-webkit-min-device-pixel-ratio: 1.3),
only screen and (min-resolution: 1.3dppx)
{
/* Things you want to change in hidpi here */
}