Skip to content

Instantly share code, notes, and snippets.

@thomas-lebeau
Created April 17, 2015 07:47
Show Gist options
  • Save thomas-lebeau/2909a8bfbecbd7449711 to your computer and use it in GitHub Desktop.
Save thomas-lebeau/2909a8bfbecbd7449711 to your computer and use it in GitHub Desktop.
hyphenation mixin
.hyphenate() {
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word; // Non standard for webkit
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment