Is there any way to simulate text-overflow="ellipsis" using CSS2?
I found this solution that emulates text-overflow:ellipsis in firefox with CSS but it's not working.
I'm not interested in a JavaScript solution.
|
Is there any way to simulate text-overflow="ellipsis" using CSS2? I found this solution that emulates text-overflow:ellipsis in firefox with CSS but it's not working. I'm not interested in a JavaScript solution.
| ||||
|
feedback
|
|
There really isn't a satisfactory way in CSS to achieve the same result as The only working non-Javascript solution I've seen was one which used The good news is that In the meanwhile, Firefox 4/5/6 remains the only major browser where you simply cannot get a working ellipsis in CSS, and without any good alternative One creative solution I've seen was to use a gradient transparency effect on the right hand end of the text element, to produce a fade-out effect instead of using an ellipsis. This is a different look, but provides the same kind of visual cues that an ellipsis does, and it is possible to achieve it in most browsers (although you may prefer to make it specific to Firefox and continue using the ellipsis for all others). Hope that helps. By the way, you might also be interested in this question I asked a few months ago where it was discussed at length: text-overflow:ellipsis in Firefox 4? (and FF5) | ||||
|
feedback
|
|
This one seems to work everywhere except Ubuntu+Chrome: http://mattsnider.com/css/css-string-truncation-with-ellipsis/ Compass implementation: http://compass-style.org/reference/compass/typography/text/ellipsis/ | |||
|
feedback
|