Skip to content

Instantly share code, notes, and snippets.

@loburets
Last active July 6, 2017 10:35
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 loburets/dc9cbcc701b0048a1daa to your computer and use it in GitHub Desktop.
Save loburets/dc9cbcc701b0048a1daa to your computer and use it in GitHub Desktop.
Wrap from long words, strings
/*add max-width from table columns */
/* add this styles from wysywig window */
.overflow-long-text {
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
.overflow-long-text p {
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
/*from one string*/
.overflow-long-string {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment