Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css overflow truncate

//Truncate text overflow 
.element {
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}
 
PREVIOUS NEXT
Tagged: #css #overflow #truncate
ADD COMMENT
Topic
Name
6+8 =