Fixed attachment background image flicker/disappear in chrome when coupled with a css transform

This has been a very common unsolved mystery. Recently I had the same problem, and ‘-webkit-backface-visibility: hidden’, proved to be less than useless (on my ‘fixed’ attached background), since the background just disappeared when it was set. (Additional Info: the reason is that when the background is set as fixed, it is almost similar to putting a fixed ‘div’ in the background and setting the original div background to be transparent. Hidden backface does the obvious).

To solve the current problem, try setting the ‘position‘ propery of the element as ‘static‘, or if you have given it some other value, namely ‘relative‘, ‘fixed‘ or ‘absolute‘, just remove those.

If you don’t remember setting the position property, and the problem still persist, my suggestion is that you use a debugging tool on chrome or firefox, to

make sure there are no manually set values to the ‘position’ property other than
‘static’.

Just spent half an hour searching… Thought this could make it easier for you… regards. 🙂

Leave a Comment