Last Updated: February 25, 2016
·
6.746K
· patrikengborg

Fix element flickering in Safari caused by CSS3 transitions

Sometimes when using CSS transitions in Safari, it causes elements to start to flicker.

To get rid of this, just add:

webkit-perspective:<some value>; 
webkit-backface-visibility:none; 

to the actual element or the parent element, and everything should run smoothly again.