Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

restrict a paragraph height css

body {
   margin: 20px;
}

.text {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -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
5+3 =