/ Gists / Text overflowing (line & multiline)
On gists

Text overflowing (line & multiline)

CSS CSS trick

how.css Raw #

/* CSS for Text Overflow in One Line */
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;


/* Displaying Multiline Text with Overflow */
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;