Answers for "css show ... for long text"

CSS
3

css add dots if text too long

text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
Posted by: Guest on April-29-2020
32

text overflow ellipsis css

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

css text overflow

overflow: scroll;
white-space: nowrap;
Posted by: Guest on December-30-2019

Browse Popular Code Answers by Language