I am currently working on achieving consistent font appearance across Mac Chrome, Safari, and Firefox (IE compatibility to be addressed later).
My experiments have included:
-webkit-font-smoothing: subpixel-antialiased;
The font appears almost identical, but in Safari and Firefox it seems slightly lighter in weight.
I have also tested:
-webkit-font-smoothing: antialiased;
And for Firefox:
-moz-osx-font-smoothing: grayscale
In addition, I have the following set:
text-rendering: optimizeLegibility !important;
This approach results in a fairly consistent font appearance, although not as smooth as when using subpixel antialiasing.
Is there a missing property that should be added? While I understand complete uniformity may not be possible, I expected better consistency between two WebKit browsers like Chrome and Safari.
The font in question is Raleway from Google Fonts, if that information helps in any way.