I'm creating a table with several cells of a fixed width, exmple...
<table>
<tr>
<td width="100"> <td width="100">XXX</td>
<td width="100">A</td>
</tr>
</table>
What I figured would happen is the cell would take the 100 pixel instruction and apply it thereby not allowing, the to increase the width of the cell. I don't care about whatever string getting cut off inside the table as I can always add an onMouseOver event to display the string in its entirety. But I would like the table to keep it's assigned widths.
Thanks for any help
<table>
<tr>
<td width="100"> <td width="100">XXX</td>
<td width="100">A</td>
</tr>
</table>
What I figured would happen is the cell would take the 100 pixel instruction and apply it thereby not allowing, the to increase the width of the cell. I don't care about whatever string getting cut off inside the table as I can always add an onMouseOver event to display the string in its entirety. But I would like the table to keep it's assigned widths.
Thanks for any help