Problem) Limit Number of lines of text to display  with css?
or
 limit Number of words displayed using css?

or
limit Number of words displayed in sharepoint 2013 ?
or
Limit Number of lines of text to display in sharepoint?


Solution)   
Add this css to you  element ex: if you want to limit a paragraph tag then add this css to p tag in your 
CSS:
p{
overflow: hidden; 
  text-overflow: ellipsis;  
 display: -webkit-box;  
 line-height: 16px; 
    /* fallback */   
max-height: 40px;  
    /* fallback */  
 -webkit-line-clamp: 2;
 /* number of lines to show */ 
  -webkit-box-orient: vertical;

}

Comments

Popular posts from this blog