Skip to content

Instantly share code, notes, and snippets.

@Victa
Forked from maximevalette/retina.css
Created August 24, 2012 14:43
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Victa/3451445 to your computer and use it in GitHub Desktop.
Save Victa/3451445 to your computer and use it in GitHub Desktop.
Capturer les écrans Retina avec une media query
@media
only screen and (-webkit-min-device-pixel-ratio: 1.3),
only screen and (min-device-pixel-ratio: 1.3),
only screen and (min-resolution: 120dpi) {
/* Votre code ici pour les écrans Retina */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment