I am developing a website in which I have used the background-attachment:fixed
property. It\'s working fine in Firefox, but the image is not fixed. In Chrome it
I just had a similar issue, my cover + fixed was not working and images were disappearing on chrome and was able to solve it like this:
Crawl to higher node definitions and disable some of the CSS properties that may have conflicts, in my case for example, there was a:
backface-visibility: hidden
at the level that was causing it. This was being introduced by the animate.css framework.
Sorry its not a concrete answer but at least this provides some idea of how to debug your css code.