I'm with a simple problem with text-overflow
.
I can ellipsis
my text, but the text won't fill the div entirely.
Here's the demo in jsfiddle: Fiddle
I thought that this piece of code would do the trick but I'm wrong.
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
I've seen various topics related like CSS text ellipsis when using variable width divs, Can't get "text-overflow: ellipsis;" to work, but none of them worked for me.