Skip to content

Instantly share code, notes, and snippets.

@makzan
Created January 13, 2016 12:23
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 makzan/bc1135c43ecb7d059e21 to your computer and use it in GitHub Desktop.
Save makzan/bc1135c43ecb7d059e21 to your computer and use it in GitHub Desktop.
Dealing with long word in CSS (Credit CSS-Tricks)
.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