Answers for "Truncate two row CSS (white space nowrap 2 lines)"

0

Truncate two row CSS (white space nowrap 2 lines)

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
Posted by: Guest on May-16-2021

Code answers related to "Truncate two row CSS (white space nowrap 2 lines)"

Browse Popular Code Answers by Language