Hello, Good People;
I am trying to clip text inside a fixed-height DIV using ellipsis but the usual CSS properties do not produce multiple lines of text, instead shrinking my paragraph to a single line when it could occupy four:
{
height: 150px;
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; // This is where the magic happens
}
I am open to a JavaScript approach but I cannot use JQuery.
Does anyone have a solution for this?