Answers for "css truncate multiple lines"

CSS
1

text truncate after 3 lines

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
}
Posted by: Guest on August-14-2021

Code answers related to "css truncate multiple lines"

Browse Popular Code Answers by Language