I have a p-tag with a specific width and height. I want to use text-overflow:ellipsis to get ... if the text in the tag is too long. I this possible to solve with css on multiline text?

link|improve this question

its worth pointing out that text-overflow:ellipsis doesn't work at all in Firefox yet (apparently planned for FF7 when it gets released). – Spudley Jul 30 '11 at 15:00
feedback

2 Answers

Googling doesn't reveal anything even remotely promising, so I'm going to say that it's not possible.

I did find text-overflow: -o-ellipsis-lastline, but it only works in Opera: http://people.opera.com/dstorey/text/text-overflow.html (mirror: http://jsbin.com/exugux/)

There's also a similar WebKit-only solution: http://dropshado.ws/post/1015351370/webkit-line-clamp

link|improve this answer
1  
(there are plenty of JavaScript solutions) – thirtydot Jul 4 '11 at 13:59
2  
I believe this right. Everything I've ever read indicates nowrap is required – Richard H Jul 4 '11 at 14:01
Example jQuery plugin solution: pvdspek.github.com/jquery.autoellipsis – thirtydot May 11 at 22:50
feedback

HTML offers no such feature, and this is very frustrating.

That's why i have developped a small library to deal with this issue. The library provides objects to modelize and perform letter-level text rendering. This should do just what you need:

Read more at http://www.samuelrossille.com/home/jstext for screenshot, tutorial, and dowload link.

link|improve this answer
Looks helpful. A live demo on your site would be useful. Also, testing jstext-examples.html in IE9 and resizing produced this, which is obviously a little broken: i.stack.imgur.com/aoA1i.png – thirtydot May 22 at 21:05
@thirtydot Thanks for the feedback. Bug fixed and live demo added! – Samuel Rossille May 23 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.