Truncate text to a number of lines

Css

Ellipsis after two lines. The -webkit- prefixes are still required despite being supported everywhere.

.clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

More in Web & CSS

Random picks