Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

Text Overflow

/* Text is directly within flex child,
   so doing the wrapping here */
.flex-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #Text #Overflow
ADD COMMENT
Topic
Name
9+2 =