Tutorial Truncate String with Ellipsis
All the following are required, so the text must be in a single straight line that overflows a box where that overflow is hidden. .truncate ...
https://iskablogs.blogspot.com/2014/03/tutorial-truncate-string-with-ellipsis.html
All the following are required, so the text must be in a single straight line that overflows a box where that overflow is hidden.
.truncate {
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
A bunch of more techniques here, including multi-line ellipsis.
.truncate {
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
A bunch of more techniques here, including multi-line ellipsis.