Skip to content

Instantly share code, notes, and snippets.

@frankyonnetti
Created May 22, 2021 22:43
Show Gist options
  • Select an option

  • Save frankyonnetti/e869a13b3a93b262fb0ba4baa037e926 to your computer and use it in GitHub Desktop.

Select an option

Save frankyonnetti/e869a13b3a93b262fb0ba4baa037e926 to your computer and use it in GitHub Desktop.
#sass #iOS retina background images instead of css3 cover
/* for background-size:cover replacement on iOS devices */
@media only screen and (orientation: portrait) and (device-width: 320px), (device-width: 768px) {
div {
-webkit-background-size: auto 150%;
background-attachment: scroll;
}
}
@media only screen and (orientation: landscape) and (device-width: 320px), (device-width: 768px) {
div {
-webkit-background-size: 150% auto;
background-attachment: scroll;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment