Answers for "how to set text overflow ellipsis 1024px to 750px"

CSS
8

text-overflow: ellipsis; 2 line

display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on December-05-2020
-1

text-overflow: ellipsis 2 lines

display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on December-21-2021

Code answers related to "how to set text overflow ellipsis 1024px to 750px"

Browse Popular Code Answers by Language