Answers for "how to set a character limit in a line css"

CSS
2

css limit line text

.text {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}
Posted by: Guest on July-16-2021
0

limit number of text lines

overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}
Posted by: Guest on October-19-2021

Code answers related to "how to set a character limit in a line css"

Browse Popular Code Answers by Language