-webkit-transform rotate - Pixelated images in Chrome

前端 未结 9 710
夕颜
夕颜 2020-12-13 06:36

Using -webkit-transform: rotate(-5deg); on a container div, Chrome renders the grid of images with really jagged edges. Whereas in FF (-moz-transform:

9条回答
  •  执念已碎
    2020-12-13 07:18

    For me it was the perspective CSS property that did the trick:

    -webkit-perspective: 1000;
    

    Completely illogical in my case as I use no 3d transitions, but works nonetheless.

提交回复
热议问题