image moves on hover - chrome opacity issue

前端 未结 14 2214
一向
一向 2020-11-27 10:19

There seems to be an issue with my page here: http://www.lonewulf.eu

When hovering over the thumbnails the image moves a bit on the right, and it only happens on Chr

14条回答
  •  失恋的感觉
    2020-11-27 10:59

    I was need apply both backface-visibility and transform rules to prevent this glitch. Like this:

    a     {-webkit-transform: rotate(0);}
    a img {-webkit-backface-visibility: hidden;}
    

提交回复
热议问题