MS Edge CSS transition flickering

前端 未结 1 622
野的像风
野的像风 2020-12-19 04:45

I\'ve noticed a strange issue with CSS transitions in MS Edge.

Basically if you have a transition, between hover states for example, but the styles defined for those

相关标签:
1条回答
  • 2020-12-19 05:19

    There's something about transition-property: all that's causing the descendant element to inherit the animated value during the transition, instead of keeping its specified value indefinitely, in Microsoft Edge. This appears to be so specific to Microsoft Edge's implementation of CSS transitions, that even Internet Explorer behaves correctly, and it only occurs when transition-property is all — if you specify only the properties that need transitioning, Microsoft Edge behaves correctly.

    That's all I can tell you. Well, that, and the obvious fact that this is incorrect behavior.

    0 讨论(0)
提交回复
热议问题