CSS Transform causes flicker in Safari, but only when the browser is >= 2000px wide

后端 未结 6 903
执念已碎
执念已碎 2021-01-30 09:02

You read that right. Tested on multiple machines in the office and the only difference between scenarios was browser size. A coworker narrowed it down to a 2000px sweet spot. Lo

6条回答
  •  清酒与你
    2021-01-30 09:26

    If the fonts are flickering use the following CSS:

    html,body {
        -webkit-font-smoothing: antialiased;    
    }
    

提交回复
热议问题