Can I do anything about “repaints on scroll” warning in Chrome for “overflow:scroll” div

后端 未结 4 506
执念已碎
执念已碎 2020-12-12 22:03

In Chrome DevTools, under Rendering, there\'s an option to \"Show potential scroll bottlenecks\".

When I enabled this, some div elements I have on the s

4条回答
  •  天涯浪人
    2020-12-12 22:32

    You can apply this CSS on the div with overflow: scroll or overflow: auto that create scroll bottlenecks.

    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    

    That will force the browser to create a new layer to paint this element, and sometimes fix scroll bottlenecks (especially with Webkit).

提交回复
热议问题