Home › Forums › CSS › [Solved] Full Page Backgrounds on iOS (background-size: cover) › Reply To: [Solved] Full Page Backgrounds on iOS (background-size: cover)
August 13, 2015 at 8:38 pm
#206525
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.