Skip to content

Instantly share code, notes, and snippets.

@amanaplan
Created August 18, 2014 21:02
Show Gist options
  • Save amanaplan/51a765e62e031857982b to your computer and use it in GitHub Desktop.
Save amanaplan/51a765e62e031857982b to your computer and use it in GitHub Desktop.
Advanced Typography CSS — See http://blog.webink.com/opentype-features-css/ for more information
/* Turn on typographical kerning,
* standard and contextual ligatures,
* and contextual alternatives */
body {
-moz-font-feature-settings: "calt", "liga", "clig", "kern";
-moz-font-feature-settings: "calt=1, liga=1, clig=1, kern=1";
-ms-font-feature-settings: "calt", "liga", "clig", "kern";
-o-font-feature-settings: "calt", "liga", "clig", "kern";
-webkit-font-feature-settings: "calt", "liga", "clig", "kern";
font-feature-settings: "calt", "liga", "clig", "kern";
}
/* Import Bourbon mixin for */
@import "bourbon/bourbon";
/* Turn on typographical kerning,
* standard and contextual ligatures,
* and contextual alternatives */
body { @include font-feature-settings("alt", "liga", "clig", "kern"); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment