Adding -webkit-transform: translate3d(0,0,0)
to an element statically doesn't work for me.
I apply this property dynamically. For example, when a page is scrolled, I set -webkit-transform: translate3d(0,0,0)
on a element. Then after a short delay, I reset this property, that is, -webkit-transform: none
This approach seems to work.
Thank you, @Colin Williams for pointing me in the right direction.