Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Created June 12, 2014 15:02
Show Gist options
  • Save pixelchar/9c927c7e06e7d9496ab9 to your computer and use it in GitHub Desktop.
Save pixelchar/9c927c7e06e7d9496ab9 to your computer and use it in GitHub Desktop.
Word wrap mixin from Chris Coyier (as seen here: http://codepen.io/chriscoyier/blog/some-mini-sass-mixins-i-like)
@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