FancyPrairie
Programmer
I want to create a table with 3 columns. Each column a specific width. I don't want values in the first column to wrap. I want them truncated or clipped. But I can't seem to make it work. In addition to nowrap, I've tried style="overflow: hidden" with no luck.
What am I doing wrong?
What am I doing wrong?
Code:
<html><head>
</head>
<body>
<table width=40px cellSpacing=0 cellPadding=3 border=1 >
<tr>
<td width=30px noWrap >1234567890abcdefdddddddddddddddddddddddddgHIJKLMN</td>
<td width=10px></td>
<td width=10px></td>
</tr>
</table>
</body></html>