Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

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;
}
 
PREVIOUS NEXT
Tagged: #limit #number #text #lines
ADD COMMENT
Topic
Name
5+6 =