Coding Challenge - #9: Truncate Multiline Text

Style the .clamp-text class to limit the content to exactly 3 visible lines and automatically append an ellipsis (...) when the text overflows.

.clamp-text {
  /* your styles here */
}

Rules:

  • Must restrict text to at most 3 visible lines.
  • Must show an ellipsis when text overflows.
  • Pure CSS only.

Post your solution as a reply. Answer goes up in about a day.