I have a problem with Blurring and Flickering while css animation in Chrome.
First I have to say, yes i know the small Fix using:
-webkit-backface-visibility: hidden;
But in my case, I dont get it to work.
To Center a Container Im using following code:
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
The Width and the Height of this DIV is dynamic. Now the problem:
When this dynamic container has odd-numbered Pixel the text is blurry while any css animation. Just have a look at this fiddle:
https://jsfiddle.net/reuse52p/
When Im adding backface-visiblity, the container is the whole time blurry. Do you have any ideas, how I can fix this?
Sincerely