Skip to content

Instantly share code, notes, and snippets.

@n1k1c4
Created June 1, 2021 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save n1k1c4/c3dfe50743893e5c938b6748c2ebb65d to your computer and use it in GitHub Desktop.
Save n1k1c4/c3dfe50743893e5c938b6748c2ebb65d to your computer and use it in GitHub Desktop.
media query retina / no retina
@media only screen and (-webkit-min-device-pixel-ratio: 1) {
&::before {
background-image: url("./assets/bg.jpg");
}
}
@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2/1),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
&::before {
background-image: url("./assets/bg@2x.jpg");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment