Hovering over CSS transition in Safari lightens certain font color

后端 未结 7 1359
北恋
北恋 2020-12-13 14:56

In my CSS I defined a transition for a class. For some reason, when I hover over the class with the transition, the transition-duration for some reason alters t

7条回答
  •  执笔经年
    2020-12-13 15:34

    There is a similar problem using transition and translate3d. Sometimes any element on the page with :hover styles shows its hover behavior. I have this problem using a slider. Put the -webkit-transform: translateZ(0); to the :hover element and its behavior is normal.

提交回复
热议问题