I have a frame which is supposed to contain a list of links. The
clickable area of each link comprises a picture followed by some text.
I want the text to be cut at the right hand side when the user resizes
the frame to be "too narrow".
Right now, the source for that frame looks like this:
<table border="1" width="100%">
<tr style="background-color:#C0C0C0">
<td align="center">
<a href="group1">Group 1</a>
</td>
</tr>
<tr class="menu">
<td>
<div style="whitespace:nowrap;overflow:hidden;width:aut o;">
<a href="link1">
<img border="0" src="img1"> Text 1
</a>
</div>
<div style="whitespace:nowrap;overflow:hidden;width:aut o;">
<a href="link2">
<img border="0" src="img1"> Some long text here
</a>
</div>
</td>
</tr>
<tr style="background-color:#C0C0C0">
<td align="center">
<a href="group2">Group 2</a>
</td>
</tr>
</table>
But the text "Some long text here" is wrapped instead of clipped.
Suggestions?
Kai