5

I'm using isotope in Google Chrome and all items contains:

-webkit-transform: translate3d(properties);

and every even element[2,4,6,8,10,12,14...] is blurred in chrome, in firefox everything is ok

Here are properties of first elements:

position: absolute; left: 0px; top: 0px; -webkit-transform: translate3d(0px, 0px, 0px);
position: absolute; left: 0px; top: 0px; -webkit-transform: translate3d(225px, 0px, 0px);
position: absolute; left: 0px; top: 0px; -webkit-transform: translate3d(450px, 0px, 0px);
position: absolute; left: 0px; top: 0px; -webkit-transform: translate3d(675px, 0px, 0px);
position: absolute; left: 0px; top: 0px; -webkit-transform: translate3d(900px, 0px, 0px);
position: absolute; left: 0px; top: 0px; -webkit-transform: translate3d(0px, 183px, 0px);

I have tried to use -webkit-transform: scale3d(0.5, 0.5, 1); but it doesn't work

Marek Szmalc
  • 783
  • 1
  • 7
  • 15

1 Answers1

0

It might be the perspective. Try putting the default perspective on your elements. I've had a similar problem with 3D buttons on Safari.

arrow
  • 174
  • 3
  • 15