Share Posted December 5, 2014 I have an odd issue. I've created a simple rotation as follows: <div id="wish"> <p>Make a wish.<br> Write it down.<br> Tie it to the tree.</p> </div> I've added backfaceVisibility:"hidden" to the contained 'p' tag which works.When I add a pseudo element div#wish the backface visibility on the p tag fails and the pseudo element flickers badly during animation. Can anyone shed any light on this? I've been trying to solve it for nearly 2 hours!Thanks. See the Pen myeNgG by mrjonnywood (@mrjonnywood) on CodePen Link to post Share on other sites
Solution Share Posted December 5, 2014 Hello mrjonnywood, and Welcome to the GreenSock Forum! You will need to add transformStyle:"preserve-3d" along with backfaceVisibility:"hidden" to your #wish p selector (text)... to remove the flicker in Chrome: See the Pen GgooXG by jonathan (@jonathan) on CodePen I hope this helps! Happy Tweening 2 Link to post Share on other sites
Author Share Posted December 5, 2014 Thanks Jonathan! I tried "preserve-3d" on pretty much every other element apart from this! Link to post Share on other sites