I was after this for a long time, and the only thing that worked for me was rotate(0.1deg) translateZ(0) . So if you scale the item
.something:hover img{ -webkit-transform: scale(1.1) rotate(0.1deg) translateZ(0); -moz-transform: scale(1.1) rotate(0.1deg) translateZ(0); -o-transform: scale(1.1) rotate(0.1deg) translateZ(0); transform: scale(1.1) rotate(0.1deg) translateZ(0); }
without rotation, the fix does not work on my end.
If you add transform to ANY img parent (for example, rotate the container the image is in), you need to add the same fix, for example, to the element.
.something_parent{ transform: translate(-9%,9%) rotate(0.1deg) translateZ(0); -webkit-transform: translate(-9%,9%) rotate(0.1deg) translateZ(0); -mos-transform: translate(-9%,9%) rotate(0.1deg) translateZ(0); -o-transform: translate(-9%,9%) rotate(0.1deg) translateZ(0); }
Benn Mar 08 '18 at 21:07 2018-03-08 21:07
source share