Created
May 22, 2021 22:43
-
-
Save frankyonnetti/e869a13b3a93b262fb0ba4baa037e926 to your computer and use it in GitHub Desktop.
#sass #iOS retina background images instead of css3 cover
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 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