Answers for "how to show 3 dots at the end of text in html"

CSS
4

overflow dottet

.cut-text { 
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
Posted by: Guest on May-27-2020
2

three dots in css

span {
    display: inline-block;
    width: 180px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
Posted by: Guest on May-26-2020

Code answers related to "how to show 3 dots at the end of text in html"

Browse Popular Code Answers by Language