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
If transform: translate3d(); is used anywhere on your website, background-attachment: fixed; will break in chrome. If possible, change all instances of transform: translate3d(); to transform: translate();. This should fix your problem.