2

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?

MTVS
  • 1,996
  • 5
  • 25
  • 36

1 Answers1

0

add width to the class for example

.yourclass{width:300px;}

Fiddle

Abdul Malik
  • 2,562
  • 1
  • 19
  • 31