Is it possible to trim the ending of the text?
INPUT
this is an extremely very long text
RESULT
this is an ...
Yes, that is possible to achieve solely by CSS.
See my Example on jsFiddle
Key for achieving the effect is to use a combination of the following CSS-properties:
width: [x]px
overflow: hidden
white-space: nowrap
text-overflow: ellipsis
The width is neccessary to use overflow. Overflow is needed for text-overflow and white-space is needed to prevent breaks and to assure that the whole text is in one line.
Maybe you can try
text-overflow:ellipsis;
http://davidwalsh.name/css-ellipsis
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With