The following html works great (by itself):
<span style="OVERFLOW: hidden; text-overflow: ellipsis;
WIDTH: 100%;"><nobr>Some really huge line of text that
would surely wrap within a limited table cell
space.</nobr></span>
My table has columns which have specific widths except one
which has a width of 100%. Something like:
<table border=0>
<tr><td width=100>xxx</td><td width=100%>Some
really...</td></tr>
</table>
This also works great, except the text wraps. So, I tried
putting the two solutions together like:
<table border=0>
<tr><td width=100>xxx</td><td width=100%><span
style="OVERFLOW: hidden; text-overflow: ellipsis; WIDTH:
100%;"><nobr>Some really huge line of text that would
surely wrap within a limited table cell
space.</nobr></span></td></tr>
</table>
The second table cell stops scaling with the page.
Instead, it always takes on the maximum width of the
text. Even if I change the <span> to have a small width
like 150, the table cell still keeps the same width (the
maximum width of the text). I tried getting rid of the
<span> and putting the style information on the <td>, but
still no luck.
Has anyone done this successfully? Is there a better way
to go? Thanks!
Todd Gray