Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

restrict a paragraph height css

.class{
   word-break: break-word;
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   line-height: 16px; /* fallback */
   max-height: 32px; /* fallback */
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #restrict #paragraph #height #css
ADD COMMENT
Topic
Name
3+3 =