CSS: Truncate multiline text with ellipsis

PHOTO EMBED

Tue Jun 13 2023 16:05:23 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #css

.text-ellipsis--2{
  text-overflow:ellipsis;
  overflow:hidden;
  // Addition lines for 2 line or multiline ellipsis
  display: -webkit-box !important;
  -webkit-line-clamp: 2; /*here number of lines*/
  -webkit-box-orient: vertical;
  white-space: normal;
}
content_copyCOPY

Truncate mutiline text with ellipsis