Answers for "span text overflow ellipsis"

CSS
32

css ellipsis

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

text overflow ellipsis two lines

display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on October-29-2021

Code answers related to "span text overflow ellipsis"

Browse Popular Code Answers by Language