I'm trying to implement text-overflow: ellipsis; support in the FireFox version of my web site. I've found the XUL hack on the web and have applied it to the stylesheet, but I find that applying the hack removes all other styling from the element. In other words, I can either have the ellipsis, or I can have the background image, gradients, line-height, etc.

How can I get the ellipsis hack to work alongside my other styles?

link|improve this question

What's the hack — link? It will presumably be adding extra elements, which might change how the other CSS rules are interpreted. – bobince May 13 '10 at 22:19
This is the hack I'm using: rikkertkoppes.com/thoughts/2008/6 – John Haager May 14 '10 at 17:34
feedback

1 Answer

Put an extra div around the element, and give that one all the background and fonts, then set the text-overflow on the child.

link|improve this answer
Tried this a few days ago and ran into a problem where the div (or span) would wrap to the next line and wouldn't be located to the right of the icon like it was supposed to be. – John Haager May 27 '10 at 21:05
feedback

Your Answer

 
or
required, but never shown

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