Reputation: 13571
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.
Upvotes: 0
Views: 3084
Reputation: 13571
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.
Upvotes: 2