- . Safari iPad , . , iPad, . 1280x3900, , iPad &mdash, Safari .
This question elsewhere in Stack Overflow can help you solve this problem. I agree with the respondent’s suggestion to resize the background image and serve it using a media request for iPads only and leaving it alone on desktop browsers.
To implement a media query, add the following to the bottom of your CSS file:
@media screen and (max-device-width: 1024px) {
#wrapper {
background-image: url('/path/to/smaller/background/image.png');
}
}
source
share