Answers for "how to do ellipsis css"

CSS
46

css ellipsis

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

text-overflow: ellipsis; 2 line

display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on December-05-2020
0

text overflow ellipsis

white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: inherit;
Posted by: Guest on March-14-2022

Browse Popular Code Answers by Language