Is it possible to limit a text length to "n" lines using CSS (or cut it when overflows vertically).

text-overflow: ellipsis; only works for 1 line text.

original text:

Ultrices natoque mus mattis, aliquam, cras in pellentesque
tincidunt elit purus lectus, vel ut aliquet, elementum nunc
nunc rhoncus placerat urna! Sit est sed! Ut penatibus turpis
mus tincidunt! Dapibus sed aenean, magna sagittis, lorem velit

wanted output (2 lines):

Ultrices natoque mus mattis, aliquam, cras in pellentesque
tincidunt elit purus lectus, vel ut aliquet, elementum...

link|improve this question
Just a note: text-overflow ellipsis isn't supported on Firefox, see bugzilla.mozilla.org/show_bug.cgi?id=312156 – Joril Jan 12 '11 at 11:11
feedback

2 Answers

up vote 7 down vote accepted

As far as I can see, this would be possible only using height: (some em value); overflow: hidden and even then it wouldn't have the fancy ... at the end.

If that is not an option, I think it's impossible without some server side pre-processing (difficult because text flow is impossible to predict reliably) or jQuery (possible but probably complicated).

link|improve this answer
3  
This seems to work for any font-size .mytext { overflow:hidden; line-height: 1.2em; max-height: 2.4em; } – Pedro L. Oct 13 '10 at 10:44
It's not exactly what I wanted but It seems to be the best solution :/ – Pedro L. Oct 13 '10 at 10:49
@Pedro yeah. You might be able to run through each .mytext using jQuery, find out whether it has more content than is visible, and add a ... manually. That way, you are compatible to clients with no JS, and clients with JS can have the decoration. Maybe worth a separate question for a jQuery Guru to answer; might be possible to do relatively easily – Pekka Oct 13 '10 at 10:52
+1 This solution worked well enough for my purposes. – Brian Lacy May 14 at 21:44
feedback

Currently you can't, but in future you will be able to use text-overflow:ellipis-lastline. Currently it's available with vendor prefix in Opera 10.60+: example

link|improve this answer
1  
That doesn't work for multiline strings, as it requires also to set white-scace: nowrap. See here. – Sebastian Noack Dec 13 '11 at 9:34
That isn't part of the CSS3 spec: dev.w3.org/csswg/css3-ui/#text-overflow – Keithamus May 11 at 13:37
feedback

Your Answer

 
or
required, but never shown

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