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