Skip to content

Instantly share code, notes, and snippets.

@lumpysimon
Created September 30, 2015 23:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lumpysimon/5119658ee032c506ddc2 to your computer and use it in GitHub Desktop.
Save lumpysimon/5119658ee032c506ddc2 to your computer and use it in GitHub Desktop.
Bulletproof hyphenation using CSS
.hyphenate {
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
@lumpysimon
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment