Answers for "css how to truncate text with (...)"

CSS
8

truncate text css

.element{

  text-overflow: ellipsis;

  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}
Posted by: Guest on May-14-2020

Code answers related to "css how to truncate text with (...)"

Browse Popular Code Answers by Language