I\'ve had this issue for a while and it seems to be a Chrome redraw bug that hasn\'t been fixed. So I\'m looking for any stop-gap fixes.
The main issue is that when a
As seen on this great pen by Raphael Rychetsky, translate3d may be the troublemaker.
translate3d
If you use transform: translate3d(0,0,0), try replacing it by transform: translate(0,0) and it should do the trick. At least it worked for me.
transform: translate3d(0,0,0)
transform: translate(0,0)