vote up 9 vote down star
3

Is there any good way of truncating text with plain HTML and CSS, so that dynamic content can fit in a fixed-width-and-height layout?

I've been truncating server-side by logical width (i.e. a blindly-guessed number of characters), but since a 'w' is wider than an 'i' this tends to be suboptimal, and also requires me to re-guess (and keep tweaking) the number of characters for every fixed width. Ideally the truncation would happen in the browser, which knows the physical width of the rendered text.

I've found that IE has a text-overflow: ellipsis property that does exactly what I want, but I need this to be cross-browser. This property seems to be (somewhat?) standard but isn't supported by Firefox. I've found various workarounds based on overflow: hidden, but they either don't display an ellipsis (I want the user to know the content was truncated), or display it all the time (even if the content wasn't truncated).

Does anyone have a good way of fitting dynamic text in a fixed layout, or is server-side truncation by logical width as good as I'm going to get for now?

flag

4 Answers

vote up 11 vote down check

Justin Maxwell has cross browser CSS solution. It does come with the downside however of not allowing the text to be selected in Firefox. Check out his guest post on Matt Snider's blog for the full details on how this works.

CSS

.ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-moz-binding: url('assets/xml/ellipsis.xml#ellipsis');
}

ellipsis.xml file contents

<?xml version="1.0"?>
<bindings
  xmlns="http://www.mozilla.org/xbl"
  xmlns:xbl="http://www.mozilla.org/xbl"
  xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
>
	<binding id="ellipsis">
		<content>
			<xul:window>
				<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
			</xul:window>
		</content>
	</binding>
</bindings>
link|flag
That's awesome, thanks for pointing it out! The unselectable text and restrictions on what content can go in the truncated div are a shame, but generally that looks like a good solution. – Sam Stokes Jul 9 at 17:15
Only real frustration I've hit is that spaces are rendered as &nbsp;, so indentation isn't really feasible... =/ – Matchu Aug 11 at 3:36
I ran across this same problem too. I can't believe Firefox doesn't support this in some form yet. – mcjabberz Aug 24 at 18:42
vote up 5 vote down

If you're OK with a JavaScript solution, there's a jQuery plug-in to do this in a cross-browser fashion - see http://devongovett.wordpress.com/2009/04/06/text-overflow-ellipsis-for-firefox-via-jquery/

link|flag
That's definitely useful, thanks! Seems like all the browsers except Firefox support the CSS property, so with this plugin, the only people it wouldn't work for are Firefox users who've disabled Javascript - and it's a graceful degradation anyway. Any idea what the performance implications are like? – Sam Stokes Apr 29 at 14:39
No, sorry... I haven't used the code in real life, just played with the demo. It would be easy to take the demo and cut-and-paste it a hundred times into the same page. – RichieHindle Apr 29 at 14:42
1  
JavaScript truncate() (be it dot-string for jQuery or Prototype or whatever) are only a half-way solution, because they do not take into account the character width. So, if you want to truncate text because of a pre-defined limited space, those functions only work reliably when using monospaced fonts. Any serious solution would have to operate on glyphs, not on character count. – Matthias Aug 26 at 8:32
vote up 0 vote down

Yeah, this has been a major pain for years.

Impossible to get 100% on server side diff browsers, user style sheets and the cntrl +/- keys.

But if its a REAL bummer of not having this, you could just generate an img through an ashx on the server with your font & size.

I have done it. No shame in it haha

link|flag
vote up 0 vote down

For reference, here's a link to the "bug" tracking text-overflow: ellipsis support in Firefox. Sounds like Firefox is the only major browser left that doesn't support a native CSS solution.

link|flag

Your Answer

Get an OpenID
or

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