I need to show the ellipses(...) if the text overflows in DIVs and SPANs.

I have a CSS attribute called text-overflow:ellipses. But this works only in IE.

I want to display the same in other browsers like Firefox/Chrome etc..

link|improve this question

76% accept rate
feedback

3 Answers

up vote 2 down vote accepted

This article (http://mattlaine.com/blog/?p=49) explains how to do it for Firefox.

There is also a jQuery plugin that will add the ellipses for Firefox.

text-overflow: ellipsis works on a few other browsers, like Safari. Opera uses -o-text-overflow.

link|improve this answer
feedback

try

text-overflow:  ellipsis | clip
link|improve this answer
feedback

This property is not implemented in Firefox ..
They mention that you can use the -moz-binding to simulate this

reference: https://developer.mozilla.org/en/CSS/text-overflow

link|improve this answer
Only works in FF < 4.0 – ArmedMonkey Apr 3 at 13:41
feedback

Your Answer

 
or
required, but never shown

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