Answers for "text ellipsis with width 100 percent"

CSS
1

css ellipsis max width

.text-ellipsis{
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
Posted by: Guest on July-02-2020

Code answers related to "text ellipsis with width 100 percent"

Browse Popular Code Answers by Language