CSS Ellipsis Beginning of String

By  on  
I was incredibly happy when CSS text-overflow: ellipsis (married with fixed width and overflow: hidden was introduced to the CSS spec and browsers; the feature allowed us to stop trying to marry JavaScript width calculation with string width calculation and truncation.  CSS ellipsis was also very friendly to accessibility. The CSS text-overflow: ellipsis feature is great but is essentially meant to ellipsize strings only at the end; what if we want to ellipsize the beginning of a screen?  The use case is fairly reasonable: think displaying a file path -- many times the directory for a set of files is the same, in which case you'd want to display the end of the string, not the beginning. Let me show you a trick for ellipsis at the begging of the string!

The CSS

Showing an ellipsis at the front of a string is mostly the same as ellipsis at the end, only with one simple trick:
.ellipsize-left {
    /* Standard CSS ellipsis */
    white-space: nowrap;                   
    overflow: hidden;
    text-overflow: ellipsis;  
    width: 200px;
    
    /* Beginning of string */
    direction: rtl;
    text-align: left;
}
To add an ellipsis at the beginning of a string, use RTL and and text-align to clip the beginning of the string! Playing RTL off of text-align is a genius way to get the desired effect of CSS ellipsis at the beginning of an element or string.  It would be great for the CSS spec to implement a more robust ellipsis system but, for now, I worship amazing CSS tricks like this!

Recent Features

  • By
    9 Mind-Blowing WebGL Demos

    As much as developers now loathe Flash, we're still playing a bit of catch up to natively duplicate the animation capabilities that Adobe's old technology provided us.  Of course we have canvas, an awesome technology, one which I highlighted 9 mind-blowing demos.  Another technology available...

  • By
    Facebook Open Graph META Tags

    It's no secret that Facebook has become a major traffic driver for all types of websites.  Nowadays even large corporations steer consumers toward their Facebook pages instead of the corporate websites directly.  And of course there are Facebook "Like" and "Recommend" widgets on every website.  One...

Incredible Demos

  • By
    jQuery Wookmark

    The first thing that hits you when you visit Pinterest is "Whoa, the columns are the same width and the photos are cut to fit just the way they should."  Basic web users probably think nothing of it but as a developer, I can appreciate the...

  • By
    NSFW Blocker Using MooTools and CSS

    One of my guilty pleasures is scoping out the latest celebrity gossip from PerezHilton.com, DListed.com, and JoBlo.com. Unfortunately, these sites occasionally post NSFW pictures which makes checking these sites on lunch a huge gamble -- a trip to HR's office could be just a click away. Since...

Discussion

  1. The CSS spec seems to recommend against using the direction property on web pages:

    https://drafts.csswg.org/css-writing-modes-3/#direction

  2. yak613

    http://jsfiddle.net/yak613/fhr2s10c/

    This seems kind of strange. Where is the extra slash coming from?

  3. Boon

    This trick seems to be broken for Safari which still truncates from the back then appends the ellipsis to the front.
    Chrome/FF: 12345 => …345
    Safari: 12345 => …123

  4. Jon Wallsten

    For anyone having issues with symbols, like the plus sign in international phone numbers, add this:
    unicode-bidi: plaintext;

  5. If anyone dealing with multiline strings to truncate i recommend using the cuttr.js (https://github.com/d-e-v-s-k/cuttr-js) library ;)

  6. Dan

    Just in case anyone else runs into this… I had an issue where if the text contained punctuation, adding

    direction: rtl

    moved the punctuation marks to the beginning of the text. I solved this by appending the unicode ‎ character to the end of the string with an :after

    .ellipsize-left {
        /* Standard CSS ellipsis */
        white-space: nowrap;                   
        overflow: hidden;
        text-overflow: ellipsis;  
        width: 200px;
        
        /* Beginning of string */
        direction: rtl;
        text-align: left;
    }
    .ellipsize-left:after {
        content: '\200E'
    }
    

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