Font rendering tricks in CSS
text-rendering: optimizeLegibility; // Improved handling of kerning pairs and ligatures
-webkit-font-smoothing: antialiased; // Make font look the same in Chrome & Safari
Kerning and ligature:
-webkit-font-feature-settings: "kern", "liga", "case";
-moz-font-feature-settings: "kern", "liga" , "case";
font-feature-settings: "kern", "liga", "case";