I am aware this is possible via Javascript, as I have done it myself. However, as the platform I am building up gets bigger and bigger, I want to take as much JS heavy-load as possible. Furthermore, at this point in time, I think using the CSS text-overflow property is much more do-able as FireFox now supports it as well.

Anyhow, reading the text-overflow reference page on MDN, I got curious about that third parameter defined as "string". I do not know whether this refers to "the text-overflow property accepts string values", or if it is a parameter on its own (just like clip and ellipsis).

Essentially, I would just like to know if this string parameter would allow me to generate a custom text-overflow output, such as " ..". I have tried things like:

  • text-overflow: string(" ..");
  • text-overflow: " ..";
  • text-overflow: ellipsis-" ..";

Thank you very much in advance! Chris

link|improve this question

79% accept rate
1  
Strings in CSS are like strings in other languages, delimited by quotes. No string() notation or anything like that. – BoltClock Dec 6 '11 at 15:06
feedback

2 Answers

up vote 3 down vote accepted

Based on the Compatibility Table at the bottom of the MDN documentation, it seems only Firefox 9+ supports a string value for text-overflow.

So, you're mostly out of luck on that one.

link|improve this answer
Oh, that sucks - seems that I completely missed that one. Is there anything you would recommend, CSS-wise? – cr0z3r Dec 6 '11 at 15:05
Unfortunately, no. text-overflow is one of a kind in the CSS world. You might have to turn to JavaScript if you really need this feature. – Ryan Kinal Dec 6 '11 at 15:06
Actually, now that I think about it, you might be able to combine selector { overflow: hidden; } and selector:after { content: ' ..'; }, if you knew that the text would always overflow. – Ryan Kinal Dec 6 '11 at 20:06
feedback

Mozilla has gone ahead and proposed this syntax, and it's made an appearance in the early 2012 LC draft of the CSS3 UI spec:

text-overflow: ' ..';

Or if you meant to append .. to the existing ellipsis:

text-overflow: '... ..';

However, there are no other known implementations yet besides Mozilla's own, and as such this syntax is at risk of being dropped from a later revision of the spec.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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