Comment tronquer un texte multiligne en utilisant 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;
}
davik4life