Skip to content

Instantly share code, notes, and snippets.

@markmichon
Created April 16, 2012 20:54
Show Gist options
  • Save markmichon/2401443 to your computer and use it in GitHub Desktop.
Save markmichon/2401443 to your computer and use it in GitHub Desktop.
CSS: Word Wrap
-ms-word-break: break-all;
word-break: break-all;
// Non standard for webkit
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