Skip to content

Instantly share code, notes, and snippets.

@mm201
Forked from alainmeier/Retina.css
Created November 1, 2012 18:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mm201/3995490 to your computer and use it in GitHub Desktop.
Save mm201/3995490 to your computer and use it in GitHub Desktop.
@media only screen and (min--moz-device-pixel-ratio: 1.5), /* Gecko */
only screen and (-o-min-device-pixel-ratio: 3/2), /* Opera */
only screen and (-webkit-min-device-pixel-ratio: 1.5), /* Webkit */
only screen and (min-device-pixel-ratio: 1.5), /* Webkit */
only screen and (min-resolution: 144dpi) /* W3 */
{
.button-icon {
background-image: url("path/to/image/name@2x.png");
background-size: 16px 16px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment