background-attachment:fixed not working in chrome

后端 未结 11 2014
无人及你
无人及你 2020-12-21 19:39

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

11条回答
  •  南方客
    南方客 (楼主)
    2020-12-21 19:42

    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);
    }
    

提交回复
热议问题