I have problems again with chrome design on my site. When scrolling no loss of fps and lag on the page. I've been giving it a lot of laps to find the real culprit of the problem is the property background-attachment: fixed;
.
I tried to solve with the solution of this page and has not worked for me.
I would like to use background-attachment: fixed;
and no lag, is there any solution?
CSS:
body {
margin: 0 auto;
background-image: url(imagen/fondo.jpg);
background-repeat: repeat-x;
background-attachment: fixed;
background-position: top center;
}
Just add-
transform:translatez(0);
-webkit-transform:translatez(0);