Using -webkit-transform: rotate(-5deg);
on a container div, Chrome renders the grid of images with really jagged edges. Whereas in FF (-moz-transform:
) and IE (-ms-filter:
) everything looks OK - see the difference below.
Is there any thing I can do about this?
You could check out the answer to the question css transform, jagged edges in chrome
Helped me out
From the accepted answer:
In case anyone's searching for this later on, a nice trick to get rid of those jagged edges on CSS transformations in Chrome is to add the CSS property
-webkit-backface-visibility
with a value ofhidden
. In my own tests, this has completely smoothed them out. Hope that helps.