Answers for "show ellipses if text length greater than 30 chars"

CSS
3

css limit text length

/*CSS to limit the text length inside a div*/
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
Posted by: Guest on July-01-2020

Browse Popular Code Answers by Language