CSS3 transform rotate(旋转)锯齿/元素抖动模糊的解决办法

使用CSS3 3D transforms,通过GPU来渲染,能有效的起到抗锯齿效果。只要在CSS3 transform属性中加入translateZ(0)。例:-webkit-transform: rotate(5deg) translateZ(0);

原文地址:https://www.cnblogs.com/chenzeyongjsj/p/7007524.html