Answers for "text-overflow ellipsis by max-height"

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-overflow ellipsis by max-height"

Browse Popular Code Answers by Language