Skip to content

Instantly share code, notes, and snippets.

@mtford90
Last active November 15, 2019 23:01
Show Gist options
  • Save mtford90/2182d9b6d6b17b417646 to your computer and use it in GitHub Desktop.
Save mtford90/2182d9b6d6b17b417646 to your computer and use it in GitHub Desktop.
Better fonts

Anti-Aliasing

http://maximilianhoffmann.com/posts/better-font-rendering-on-osx

-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;

Mobile Momentum Scrolling

http://www.johanbrook.com/articles/native-style-momentum-scrolling-to-arrive-in-ios-5/

-webkit-overflow-scrolling: touch;

iOS Highlighting

http://css-tricks.com/snippets/css/remove-gray-highlight-when-tapping-links-in-mobile-safari/

-webkit-tap-highlight-color: rgba(0, 0, 0, 0);

Kerning

text-rendering: optimizeLegibility; /* 1 */
font-feature-settings: "kern" 1; /* 2 */
font-kerning: normal; /* 3 */
  • Chrome (not Windows), Firefox, Safari 6+, iOS, Android
  • Chrome (not Windows), Firefox, IE 10+
  • Safari 7 and future browsers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment