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

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

share|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
2  
seems someone got away by doing it with just css mobify.com/dev/multiline-ellipsis-in-pure-css – Gaurav Shah Nov 16 '12 at 12:28

6 Answers

up vote 3 down vote accepted

CSS3 Vertical ellipsis

http://jsfiddle.net/microbians/csYjC/

HTML

<div class="box">
        <div class="text">
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam consectetur venenatis blandit. Praesent vehicula, libero non pretium vulputate, lacus arcu facilisis lectus, sed feugiat tellus nulla eu dolor. Nulla porta bibendum lectus quis euismod. Aliquam volutpat ultricies porttitor. Cras risus nisi, accumsan vel cursus ut, sollicitudin vitae dolor. Fusce scelerisque eleifend lectus in bibendum. Suspendisse lacinia egestas felis a volutpat.
        </div>
</div>

CSS

       body {
        padding:                     20px;
    }

    .box {
        position:                   relative;
        font-family:                sans-serif;
        display:                    block;
        width:                      244px;
        height:                     7em;
        overflow:                   hidden;
    }
    .box .text {
        color:                      #333;
        padding:                    20px;
        width:                      204px;
        overflow:                   hidden;
        background:                 #E0E0E0;
        font-size:                  .95em;
        line-height:                1;
        text-align:                 justify;
    }

    .box .text:after {
        content:                    ' ';
        position:                   absolute;
        display:                    block;
        width:                      100%;
        height:                     1em;
        bottom:                     0px;
        left:                       0px;
        background:                 #E0E0E0;
    }

    .box .text:before {
        content:                    '...';
        text-align:                 right;
        position:                   absolute;
        display:                    block;
        width:                      2em;
        height:                     1em;
        bottom:                     1em;
        right:                      20px;
background: -moz-linear-gradient(left,  rgba(224,224,224,0) 0%, rgba(224,224,224,1) 38%, rgba(224,224,224,1) 99%);
background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(224,224,224,0)), color-stop(38%,rgba(224,224,224,1)), color-stop(99%,rgba(224,224,224,1)));
background: -webkit-linear-gradient(left,  rgba(224,224,224,0) 0%,rgba(224,224,224,1) 38%,rgba(224,224,224,1) 99%);
background: -o-linear-gradient(left,  rgba(224,224,224,0) 0%,rgba(224,224,224,1) 38%,rgba(224,224,224,1) 99%);
background: -ms-linear-gradient(left,  rgba(224,224,224,0) 0%,rgba(224,224,224,1) 38%,rgba(224,224,224,1) 99%);
background: linear-gradient(to right,  rgba(224,224,224,0) 0%,rgba(224,224,224,1) 38%,rgba(224,224,224,1) 99%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00e0e0e0', endColorstr='#e0e0e0',GradientType=1 );
    }
share|improve this answer
There is no need to use prefixed for linear gradients – Eugene Xa May 14 at 19:54
Why all these magic numbers? 204px, 244px, 7em, .95em. This problem needs generic solution – Eugene Xa May 14 at 19:55

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

share|improve this answer
6  
This seems to work for any font-size .mytext { overflow:hidden; line-height: 1.2em; max-height: 2.4em; } – Peter Oct 13 '10 at 10:44
It's not exactly what I wanted but It seems to be the best solution :/ – Peter Oct 13 '10 at 10:49
1  
@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 '12 at 21:44

There is a way, but it is webkit-only. However, when you combine this with line-height: X, and max-height: X*N, it will also work in other browsers, just without ellipses.

.giveMeEllipsis {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: N; /* number of lines to show */
   -webkit-box-orient: vertical;
}

UPDATE: I have recently found that display: -webkit-box; breaks things in Opera in a very strange way. So I would recommend targeting webkit browsers with media query.

Opera moves to webkit, so I suppose this is no longer an issue

.giveMeEllipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: X;
    max-height: X*N
}

@media (-webkit-min-device-pixel-ratio: 0) {
    .giveMeEllipsis {
        display: -webkit-box;
        -webkit-line-clamp: N; /* number of lines to show */
        -webkit-box-orient: vertical;
    }
}
share|improve this answer

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

share|improve this answer
2  
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 '12 at 13:37

What you can do is the following:

.max-lines {
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 3.6em;
  line-height: 1.8em;
}

where max-height: = line-height: × <number-of-lines> in em.

share|improve this answer

I have a solution which works well but instead an ellipsis it uses a gradient. It works when you have dynamic text so you don't know if it will be long enough to need an ellipse. The advantages are that you don't have to do any JavaScript calculations and it works for variable width containers including table cells and is cross-browser. It uses a couple of extra divs, but it's very easy to implement.

http://salzerdesign.com/blog/?p=453

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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