Skip to content

Instantly share code, notes, and snippets.

@tdwesten
Created November 6, 2014 07:46
Show Gist options
  • Save tdwesten/dc027aaa44dd0d023b8a to your computer and use it in GitHub Desktop.
Save tdwesten/dc027aaa44dd0d023b8a to your computer and use it in GitHub Desktop.
Word wrap content in element via SCSS mixin
@mixin word-wrap() {
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