How to truncate a multiline text using css code example
Example: How to truncate a multiline text using css
.yourclassselector {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* Change this to any number of line to truncate.*/
-webkit-box-orient: vertical;
}