word text limit using css code example
Example 1: css ellipsis
div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Example 2: css limit text length
/*CSS to limit the text length inside a div*/
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;