Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

truncate text css

.element{

  text-overflow: ellipsis;

  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}
 
PREVIOUS NEXT
Tagged: #truncate #text #css
ADD COMMENT
Topic
Name
6+4 =