Answers for "elipse html css"

CSS
46

css ellipsis

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

Add elipses to a dom element with css

width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on April-20-2021

Browse Popular Code Answers by Language