with

overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

"..." will be shown in the end of the line if overflowed. However, this will be shown only in one line. But I would like it to be shown in multi-lines.

It may looks like:

+--------------------+
|abcde feg hij   dkjd|
|dsji jdia js ajid  s|
|jdis ajid dheu d ...|/*Here it's overflowed, so "..." is shown. */
+--------------------+
link|improve this question

1  
Can you clarify what you're trying to do? A new line will start after each br tag... – Jeff Jun 3 '11 at 4:30
If these are each separate lines, you really only need to worry about doing one line and repeating the functionality for each line. If these lines all belong to the same sentence, you should probably keep the ellipsis only on the last line. If you use an ellipsis partway through a sentence, you're essentially making a hole in your sentence. – Wex Jun 3 '11 at 4:58
feedback

3 Answers

up vote 5 down vote accepted

There are also several jquery plugins that deal with this issue, but many do not handle multiple lines of text. One that seems to work is: http://pvdspek.github.com/jquery.autoellipsis/

An example: http://jsfiddle.net/VpmbL/

link|improve this answer
I haven't seen any pure css solutions to this requirement – Jim Thomas Jun 3 '11 at 5:23
I followed the instructions but it just didn't work... – Ovilia Jun 3 '11 at 8:22
@Ovilia note that Jim's solution also includes a jQuery plugin called jquery.autoellipsis.js, you'll have to download an include that separately – Jeff Jun 3 '11 at 17:47
@Jeff Yeah, actually I did download and include it.. – Ovilia Jun 4 '11 at 1:08
@Olivia You will also need to include the main jQuery library before the plugin. If you're not familiar with that there's documentation here: docs.jquery.com/Main_Page . If you have included that, can you post the code that is not working for you? – Jim Thomas Jun 6 '11 at 4:30
feedback

After looking over the W3 spec for text-overflow, I don't think this is possible using only CSS. Ellipsis is a new-ish property, so it probably hasn't received much usage or feedback as of yet.

However, this guy appears to have asked a similar (or identical) question, and someone was able to come up with a nice jQuery solution. You can demo the solution here: http://jsfiddle.net/MPkSF/

If javascript is not an option, I think you may be out of luck...

link|improve this answer
why did someone just downvote all three of our answers with no comment? – Jeff Sep 6 '11 at 1:05
New-ish? MSIE supported it since IE6. Today, all browsers support it, except Firefox. – Christian Apr 24 at 9:13
I would call any CSS3 property that is not globally implemented "new-ish". It's just a matter of semantics. Also, do you realize you're commenting on a post that's almost a year old? – Jeff Apr 24 at 13:41
It's not CSS3, it's been there for ages and widely adopted. Only the specification might be considered new. Also, if SO didn't want comments on old threads, they could have disabled it. – Christian Apr 24 at 19:24
I didn't mean to imply your comment was unwanted; I was trying to say that year-old posts that say something is "new" may no longer be accurate. I don't think the word "new" affects the quality of my answer, but if you think it does, I can edit it out. – Jeff Apr 24 at 19:48
feedback

css

  div {
         width:100px;
         white-space:normal;
     }
link|improve this answer
But no "..." is shown. (even with text-overflow: ellipsis;) – Ovilia Jun 3 '11 at 3:30
feedback

Your Answer

 
or
required, but never shown

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