Skip to content

Instantly share code, notes, and snippets.

@voneff
Created March 18, 2018 09:54
Show Gist options
  • Select an option

  • Save voneff/e5b7dc3ec30ed59b8c02bd97e150d01a to your computer and use it in GitHub Desktop.

Select an option

Save voneff/e5b7dc3ec30ed59b8c02bd97e150d01a to your computer and use it in GitHub Desktop.
Enable standard ligatures and other OpenType features
/* Enabling standard ligatures and other OpenType features */
/* Source: https://app.typographychecklist.com/ */
/* Source: http://typographyhandbook.com/#opentype-features */
body, p {
font-kerning: normal;
font-variant-ligatures: common-ligatures contextual;
-moz-font-feature-settings: "kern", "liga", "clig", "calt";
-ms-font-feature-settings: "kern", "liga", "clig", "calt";
-webkit-font-feature-settings: "kern", "liga", "clig", "calt";
font-feature-settings: "kern", "liga", "clig", "calt";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment