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
background-attachment:fixed
Although this is coming a bit late, by adding the css style below seems to fix it for me.
html, body { -webkit-transform: translate3d(0px, 0px, 0px); }