Answers for "remove text overflow scs"

CSS
5

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
0

how to manage overflowing text in button

white-space:normal !important;
word-wrap:break-word;
Posted by: Guest on July-31-2020

Browse Popular Code Answers by Language