Skip to content

Instantly share code, notes, and snippets.

View webselect's full-sized avatar

webselect

  • webselect
  • Montréal / Saint-Hubert (Longueuil)
View GitHub Profile
@webselect
webselect / gist:5852009
Created June 24, 2013 17:48
CSS - OpenType Ligatures
-moz-font-feature-settings: "liga=1, dlig=1";
-ms-font-feature-settings: "liga", "dlig";
-webkit-font-feature-settings: "liga", "dlig";
-o-font-feature-settings: "liga", "dlig";
font-feature-settings: "liga", "dlig";
@webselect
webselect / gist:5851988
Created June 24, 2013 17:45
CSS - Hyphenation cross browser
-ms-word-break: break-all;
word-break: break-all;
// Non standard for webkit
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;