Monday, January 16, 2012

Font smoothing on Webkit

I’m not a big fan of the default text rendering in WebKit, it looks heavy. Fortunately there is a solution.
// no anti-aliasing
-webkit-font-smoothing: none;
// default, subpixel anti-aliasing
-webkit-font-smoothing: subpixel-antialiased;
// true anti-aliasing
-webkit-font-smoothing: antialiased;
view raw gistfile1.txt hosted with ❤ by GitHub


You can find here more examples on Christoph Zillgen's site.

1 comment: