Hi,
I have text like this:
text that is very very very long and this text on same line to follow ellipsis
It needs to be displayed in Intenet Explorer like this:
text that is ... and this text on the same line to follow ellipsis.
I have tried div and span tags, all give me the same problem, either the text has a line break after ellipsis, or the text does not break, but there are no ellipsis.
What I've tried:
1.
<nobr><div style="width:30px;display:inline;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;"><nobr>text that is very very long</nobr></div><nobr>and this text on the same line to follow ellipsis</nobr></nobr>
2.
<span style="width:30px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden>text that is very very long</span>and this text on the same line to follow ellipsis
I am trying to avoid doing this on the server to keep it more efficient.
Any help appreciated.
Thanks.
-Shefali[code][/code]


