Wrap
- white-space: shorthand of
white-space-collapseandtext-wrap - word-break
- overflow-wrap (alias
word-wrap) - hyphens
Overflow
Examples
One line:
css
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
Multiple lines:
css
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
Tips
If you both set white-space: no-wrap; and word-break: break-all;, the text will not be wrapped.