Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Ease Action Causes Text Flash Re: Ease Action Causes Text Flash

#118166
Qoopido
Member

@hudsora
Cannot reproduce the problem but what you describe sounds familiar. What andy_unleash wrote should fix the problem, but from what I learnt “backface-visibility: hidden” can have some nasty side effects – at least that is what I remember when I gave it a try.

What I ended up using to fix text-rendering glitches while css transforms/transitions are running is:

* {
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-ms-font-smoothing: antialiased;
font-smoothing: antialiased;
}