0

It's not the IE6 bug of position: relative mentioned here, and I couldn't figure out why. When the child div animates beyond its parent's border some part of it still flickers for a split second before disappearing properly.

Community
  • 1
  • 1
Lucia
  • 13,033
  • 6
  • 44
  • 50

1 Answers1

2

The cause was the attribute transform: translate3d(0px, 0px, 0px) series added to force render the div. I added all four of them using LESS's method, but only the first one is really in use.

-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);

Remove the last one and it's fixed.

Youp Bernoulli
  • 5,303
  • 5
  • 39
  • 59
Lucia
  • 13,033
  • 6
  • 44
  • 50