Elegant Overflow with CSS Ellipsis

By  on  

9/27/2011: As of Today, Firefox 7 supports this text-overflow: ellipsis.

Overflow with text is always a big issue, especially in a programmatic environment. There's always only so much space but variable content to add into that space. I was recently working on a table for displaying user information and noticed that longer strings were breaking the table display. The obvious solution was adding an overflow: hidden setting to the table cells, but even then the text looked unnaturally cut off. The way to make text overflow elegant is with ellipses, and CSS' text-overflow property. Let's check it out!

The CSS

The CSS behind creating ellipses is quite simple, combining width, wrapping, overflow, and text-overflow:

.dataTable td {
	/* essential */
	text-overflow: ellipsis;
	width: 200px;
	white-space: nowrap;
	overflow: hidden;
	
	/* for good looks */
	padding: 10px;
}

Setting the width provides the obvious boundary for, white-space prevents normal next-line wrapping, hiding overflow ensures the width dimension is respected, and the text-overflow setting provides the ellipsis. Great, right? But there's a problem...

Firefox and Ellipsis

Unfortunately Firefox doesn't currently support text-overflow:ellipsis. There's one simple solution for Firefox provided by the Dojo Toolkit: dojox.html.ellipsis. This resource uses an iFrame shim to create the ellipsis. Here's how to use it:

// require the resource
dojo.require("dojox.html.ellipsis");

After requiring the JavaScript resource, it's time to place a dojoxEllipsis node within the page, signaling that the dojox.html.ellipsis resource should ellipsize it:

Pellentesque habitant morbi tristique senectus et netus et malesuada...

Any time the DOM tree is modified, Dojo scours the page for elements with the dojoxEllipsis CSS class and ellipsizes them.

Implementing dynamic ellipses for content is a simple, subtle, and effective way of elegantly managing content within an confined. With the exception of Firefox, text-overflow:ellipsis is supported by the major browser vendors. Dojo's implementation is stable and effective but can slow down the page if there are many ellipsized elements on a page. Happy ellipsizing!

Recent Features

  • By
    CSS Animations Between Media Queries

    CSS animations are right up there with sliced bread. CSS animations are efficient because they can be hardware accelerated, they require no JavaScript overhead, and they are composed of very little CSS code. Quite often we add CSS transforms to elements via CSS during...

  • By
    How I Stopped WordPress Comment Spam

    I love almost every part of being a tech blogger:  learning, preaching, bantering, researching.  The one part about blogging that I absolutely loathe:  dealing with SPAM comments.  For the past two years, my blog has registered 8,000+ SPAM comments per day.  PER DAY.  Bloating my database...

Incredible Demos

  • By
    Telephone Link Protocol

    We've always been able to create links with protocols other than the usual HTTP, like mailto, skype, irc ,and more;  they're an excellent convenience to visitors.  With mobile phone browsers having become infinitely more usable, we can now extend that convenience to phone numbers: The tel...

  • By
    MooTools, mediaboxAdvanced, and Mexico

    The lightbox is probably one of my favorite parts of the Web 2.0 revolution. No more having to open new windows (which can bog down your computer quite a bit) to see a larger image, video, etc. Instead, the item loads right into the...

Discussion

  1. Nice article! Firefox 7 has support for text-overflow: ellipsis; …at long last!!

  2. Brilliant! I can’t wait to use this

  3. Added a demo as requested.

  4. Hi,

    Idea is good. But I miss the punctation mark.

    Example 1: “This is very important!” => “This is…!”
    Example 2: “Is this a required field?” =Y “Is this…?”

    I think this will help.

    Greetings

    Andreas

  5. Ida

    Update! As of Fx7 released this week Firefox do support text-overflow. *happy dance*

  6. Tofudisan

    Just curious as the the effect of this on accessibility. Correct me if I’m wrong but this method is using a table element to display truncated data?

    While it looks nice doesn’t it require the user to print or disable the style sheet in order to see the data in the cells? Or would you use a hover effect to display the text (i.e. a info bubble)?

  7. Kunal

    Currently, it does right-type ellipsis. Is there a way to do left-type ellipsis?

    …foo.txt

    or may be, center-type ellipsis?

    C:\….foo.txt

    • Axel Grude

      you can get left ellipsis by choosing direction: rtl; not sure if you need to reverse the string before applying that. I haven’t found any center ellipsis in CSS unfortunately (May 2015).

  8. Marco

    Hi

    I’m also interested in left-type ellipsis. Has anyone some hints?

    Regards

    Marco

  9. Dude

    Dude, this ellipse fix is exactly what I needed. Even matched the width of the left-nav column! Thanks dude. This was a bulls-eye fix since you need ALL THREE pieces in the element (i.e. white-space, overflow, and text-overflow) to make it work. Cheers. Internet rules.

  10. Carlos

    Great! It saved me the day. Thanks a lot!

  11. werner

    But what happens if you need column with different width? This only works when all columns have the same width.

  12. Kanagan

    Hi

    Please let me know, Is it possible to show the dots at second or other lines.

    Lorem Ipsum is simply dummy text of the …

    • I don’t believe that’s possible at the moment but I’m happy for someone to prove me wrong!

  13. Nice tutorial. Thanks for this.

  14. Nice tut you’ve got there.

    I recently posted a tutorial on how to control content overflow in HTML using CSS overflow property on my blog.

    Here’s the link: http://inyavic.blogspot.com/2014/02/how-to-control-content-overflow-in-html.html

  15. Ankit

    Can be done without dojox:

    #test {
        width: 50px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    
    #test:hover {
        overflow: visible;
    }

Wrap your code in <pre class="{language}"></pre> tags, link to a GitHub gist, JSFiddle fiddle, or CodePen pen to embed!