how to add three dots to text when overflow in html?

HtmlCss

Html Problem Overview


How can I show three dots(...) in a text like this? like this?

Html Solutions


Solution 1 - Html

Add all these. To make in single line.

text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width:100px; // some width

To do in multi line which actually you asked.

#content{
overflow: hidden;
width:100px;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
}

working fiddle: https://jsfiddle.net/mishrarajesh/676jc7sa/

Please note that this multiline code is supported only in web-kit browsers for now.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJonathan IvgiView Question on Stackoverflow
Solution 1 - HtmlrajeshView Answer on Stackoverflow