Answers for "clip text to one line with ellipsis"

CSS
3

text overflow ellipsis two lines

display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on October-29-2021

Code answers related to "clip text to one line with ellipsis"

Browse Popular Code Answers by Language