Answers for "trim text in css"

CSS
32

text overflow ellipsis css

div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
Posted by: Guest on May-01-2020
0

css trim text

width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
Posted by: Guest on July-19-2021

Browse Popular Code Answers by Language