Skip to content

Instantly share code, notes, and snippets.

@tiendq
Created September 24, 2015 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiendq/00ecf9ec7b5f8063e723 to your computer and use it in GitHub Desktop.
Save tiendq/00ecf9ec7b5f8063e723 to your computer and use it in GitHub Desktop.
/* Dealing with long words in CSS
https://justmarkup.com/log/2015/07/31/dealing-with-long-words-in-css */
.hyphenate {
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-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