Answers for "text ellipsis js"

CSS
32

css ellipsis

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

css paragraph ellipsis

max-width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on March-23-2020

Browse Popular Code Answers by Language