I want multi-line truncation via CSS

Submitted by Alexis Córdova

A solution for this is currently in development. See the related links for more detail.

Single-line text truncation is easy, straightforward, and broadly supported in browsers; however, multi-line text truncation requires JavaScript, half-baked and non-standardized CSS properties, or fragile hacks to accomplish.

The closest attempt I've seen is the -webkit-line-clamp approach:

.line-clamp {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}
Tagged
CSS