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;
}