Have you noticed the recent change in Chromium's rendering engine behavior regarding non-integer pixel values? This alteration has caused text to appear blurry, impacting many websites that utilize the popular
transform: translate3d(-50%, -50%, 0);
centering technique. For example, check out .
Despite scouring this platform, I have not come across any discussions regarding this issue. The standard solutions for fixing blurry text like -webkit-font-smoothing
and translateZ(0)
do not seem to be effective in this case.
So, aside from using flexbox, does anyone have a workaround for this new blurriness problem?