I want to signal the user if the text is too long to be displayed in a multi-line container but I can't use:
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
because it causes the text to overflow in the first-line.
And unfortunately there is no pseude-element selector for the last-line so What's the solution?