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.
Asked
Active
Viewed 3,081 times
0
-
2If you're downvoting, give feedback, so I know how to improve next time, thx – Lucia Mar 17 '14 at 03:02
1 Answers
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