Skip to content

Instantly share code, notes, and snippets.

@gabskoro
Last active December 13, 2015 15:28
Show Gist options
  • Save gabskoro/aa2d8ff8acbe8746c1d7 to your computer and use it in GitHub Desktop.
Save gabskoro/aa2d8ff8acbe8746c1d7 to your computer and use it in GitHub Desktop.
Dealing with long words in CSS
/* https://justmarkup.com/log/2015/07/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