Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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. */
+--------------------+
share|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

7 Answers

up vote 24 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/

share|improve this answer
10  
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
1  
css multiline elipsis tutorial : mobify.com/dev/multiline-ellipsis-in-pure-css – Julien Apr 7 at 21:31
show 2 more comments

I have hacked around until I've managed to achieve something close to this. It comes with a few caveats:

  1. It's not pure CSS; you have to add a few HTML elements. There's however no JavaScript required.
  2. The ellipsis is right-aligned on the last line. This means that if your text isn't right-aligned or justified, there may be a noticable gap between the last visible word and the ellipsis (depending on the length of the first hidden word).
  3. The space for the ellipsis is always reserved. This means that if the text fits in the box almost precisely, it may be unnecessarily truncated (the last word is hidden, although it technically wouldn't have to).
  4. Your text needs to have a fixed background color, since we're using colored rectangles to hide the ellipsis in cases where it's not needed.

I should also note that the text will be broken at a word boundary, not a character boundary. This was deliberate (since I consider that better for longer texts), but because it's different from what text-overflow: ellipsis does, I thought I should mention it.

If you can live with these caveats, the HTML looks like this:

<div class="ellipsify">
    <div class="pre-dots"></div>
    <div class="dots">&hellip;</div>
    <!-- your text here -->
    <span class="hidedots1"></span>
    <div class="hidedots2"></div>
</div>

And this is the corresponding CSS, using the example of a 150 pixel wide box with three lines of text on a white background. It assumes you have a CSS reset or similar that sets margins and paddings to zero where necessary.

/* the wrapper */
.ellipsify {
    font-size:12px;
    line-height:18px;
    height: 54px;       /* 3x line height */
    width: 150px;
    overflow: hidden;
    position: relative; /* so we're a positioning parent for the dot hiders */
    background: white;
}

/* Used to push down .dots. Can't use absolute positioning, since that
   would stop the floating. Can't use relative positioning, since that
   would cause floating in the wrong (namely: original) place. Can't 
   change height of #dots, since it would have the full width, and
   thus cause early wrapping on all lines. */
.pre-dots {
    float: right;
    height: 36px;  /* 2x line height (one less than visible lines) */
}

.dots {
    float: right; /* to make the text wrap around the dots */
    clear: right; /* to push us below (not next to) .pre-dots */
}

/* hides the dots if the text has *exactly* 3 lines */
.hidedots1 {
    background: white;
    width: 150px;
    height: 18px;       /* line height */
    position: absolute; /* otherwise, because of the width, it'll be wrapped */
}

/* hides the dots if the text has *less than* 3 lines */
.hidedots2 {
    background: white; 
    width: 150px;
    height: 54px;       /* 3x line height, to ensure hiding even if empty */
    position: absolute; /* ensures we're above the dots */
}

The result looks like this:

image of the rendered result with different text lengths

To clarify how it works, here's the same image, except that .hidedots1 is hightlighted in red, and .hidedots2 in cyan. These are the rectangles that hide the ellipsis when there's no invisible text:

the same image as above, except that the helper elements are highlighted in color

Tested in IE9, IE8 (emulated), Chrome, Firefox, Safari, and Opera. Does not work in IE7.

share|improve this answer
2  
You don't really need the 4 html elements, provided your text is wrapped with <p> tags (as they should be), then you can use .ellipsify p:before and .ellipsify p:after then of course you need .ellipsify p:before{content:"\2026";} the \2026 is the code for the ellipsis, also, may need content:" "; as they may not work for the empty elements. – Val Feb 12 at 11:49

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...

share|improve this answer
why did someone just downvote all three of our answers with no comment? – Jeff Sep 6 '11 at 1:05
1  
New-ish? MSIE supported it since IE6. Today, all browsers support it, except Firefox. – Christian Apr 24 '12 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 '12 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 '12 at 19:24
2  
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 '12 at 19:48

The link below provides a pure HTML / CSS solution to this problem. However, it's quite involved and most likely won't work in non-modern browsers:

http://www.mobify.com/dev/multiline-ellipsis-in-pure-css

share|improve this answer
This is awesome ! It works fine for what i want to do :) – Olivier Feb 20 at 10:34

Just want to add to this question for completeness sake.

share|improve this answer

Great question... I wish there was an answer, but this is the closest you can get with CSS these days. No ellipsis, but still pretty usable.

overflow: hidden;
line-height: 1.2em;
height: 3.6em;      // 3 lines * line-height
share|improve this answer

Here is all you need:

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

hello 1221 world 4...

share|improve this answer
1  
it only works if the text is NOT multilines – Olivier Feb 20 at 10:12

protected by Andrew Whitaker Oct 1 '12 at 20:05

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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