Skip to content

Instantly share code, notes, and snippets.

@troutacular
Last active April 6, 2016 23:25
Show Gist options
  • Save troutacular/ed411bdf469af06e267c393935b5b0e7 to your computer and use it in GitHub Desktop.
Save troutacular/ed411bdf469af06e267c393935b5b0e7 to your computer and use it in GitHub Desktop.
CSS: Word Wrapping
.wrapped-item {
display: inline-block;
*display: inline;
*zoom: 1;
text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
word-wrap: normal;
max-width: 100px;
vertical-align: bottom;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment