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

后端 未结 6 906
执念已碎
执念已碎 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:23

    An easy solution that solved all my problems was this:

    .app * {
      transform-style: preserve-3d;
    }
    

提交回复
热议问题