> IE allows to show text that exceeds the container's boundaries as
> unfinished (by adding ellipsis).
[quoted text clipped - 4 lines]
> will be shown as
> some lon...
That is an IE invention, it is not part of the W3C CSS 2 specification;
<URL:http://www.w3.org/TR/CSS21/visufx.html#propdef-overflow>
> Is there any way to do the same in Firefox by means of ellipsis?
Some script-based solutions have been discussed in the past based on
whether scroll bars are displayed or not - I don't think they are a good
idea. Search the archives at:
news:comp.lang.javascript
You may be able to use a CSS hack to make a style rule visible to IE
only to set overflow to 'ellipsis' and auto (or whatever) for other
browsers.

Signature
Rob
marss - 31 May 2006 09:38 GMT
> Some script-based solutions have been discussed in the past based on
> whether scroll bars are displayed or not - I don't think they are a good
[quoted text clipped - 5 lines]
> only to set overflow to 'ellipsis' and auto (or whatever) for other
> browsers.
Thanks a lot, RobG