Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Full Page Backgrounds on iOS (background-size: cover) Reply To: [Solved] Full Page Backgrounds on iOS (background-size: cover)

#206525
Shikkediel
Participant

This one’s had more lives than a cat, some of which identical or far from a solution to the original question.

Anyway… for those who choose the fixed div approach, adding the following to the CSS will make this less detrimental to screen repaints (apparently also the reason background-attachment: fixed doesn’t work in the first place) :

#backdiv {
-webkit-backface-visibility: hidden;
}

Or even on webkit related desktop browsers for that matter.