contentRauno
Font Smoothing
SHOULD
SHOULD: Apply `-webkit-font-smoothing: antialiased` so subpixel rendering does not make text look heavier than the designed weight.
Apply -webkit-font-smoothing: antialiased for better text legibility
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }Bad
Good
Why it matters
Subpixel antialiasing can make text appear heavier than designed, especially on macOS. Applying antialiased rendering produces text that more closely matches the intended font weight and appears crisper on high-DPI displays.
References