add ellipsis when is too long code example
Example 1: css ellipsis max width
.text-ellipsis{
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Example 2: need short long paragraph css
//Line Clampin’ (Truncating Multiple Line Text)
.paragraph {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
overflow: hidden;
}