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
nothing was working for me, and finally this did the trick with no reasoning behind :)
-webkit-background-size: cover !important;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-attachment: fixed !important;
position: static !important;
z-index: -1 !important;
This is working for me in both firefox and chrome. Hope that helps.