show text ellipsis on text outside div code example
Example 1: text limit in css
body {
margin: 20px;
}
.text {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* number of lines to show */
-webkit-box-orient: vertical;
}
Example 2: how to manage overflowing text in button
white-space:normal !important;
word-wrap:break-word;