I donโt know the detailed technical details, but Chrome may display fonts differently than other browsers.
What you can try is to specify a font-smoothing rule in your CSS file.
p { -webkit-font-smoothing: antialiased; }
This rule is often used. Sometimes people apply it to each selector (c * ):
* { -webkit-font-smoothing: antialiased; }
Three possible values โโfor this property:
-webkit-font-smoothing: none; -webkit-font-smoothing: subpixel-antialiased; -webkit-font-smoothing: antialiased;
Unfortunately, I canโt reproduce the anti-aliasing problem right now (I donโt know why, my computer does not change anti-aliasing, and everything reads fine, maybe the latest Chrome fix, but I canโt find anything).
Further reading:
Hope I can help. :)
source share