Skip to content

Instantly share code, notes, and snippets.

View brachkow's full-sized avatar
🏠
Working from home

Timur Brachkow brachkow

🏠
Working from home
View GitHub Profile
@carlcalderon
carlcalderon / normalize-fonts.css
Created March 12, 2014 14:20
Normalized font-rendering in common browsers
/*
There are duplicate properties that seems to behave differently pending on browser version (see -moz-font-smoothing).
This is the most consistent I've found so far between vendors.
Please fork and improve!
*/
body {
-webkit-text-rendering: optimizeLegibility;
-moz-text-rendering: optimizeLegibility;
-ms-text-rendering: optimizeLegibility;