Answers for "how to add truncate code"

CSS
4

how to add truncate code

.element{

  text-overflow: ellipsis;

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

Browse Popular Code Answers by Language