Skip to content

Instantly share code, notes, and snippets.

@unr
Created September 11, 2013 14:54
Show Gist options
  • Save unr/6524774 to your computer and use it in GitHub Desktop.
Save unr/6524774 to your computer and use it in GitHub Desktop.
Enable Font Ligatures in CSS
speak: none;
/* Enable Ligatures */
-webkit-font-feature-settings:"liga","dlig";
-moz-font-feature-settings:"liga=1, dlig=1";
-moz-font-feature-settings:"liga","dlig";
-ms-font-feature-settings:"liga","dlig";
-o-font-feature-settings:"liga","dlig";
font-feature-settings:"liga","dlig";
text-rendering:optimizeLegibility;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment