Skip to content

Instantly share code, notes, and snippets.

@smonteverdi
Created August 22, 2012 18:14
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 smonteverdi/3428075 to your computer and use it in GitHub Desktop.
Save smonteverdi/3428075 to your computer and use it in GitHub Desktop.
CSS: Prevent Text Breakouts
.prevent-text-breakouts {
-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;
-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