In the following table, the first cell content is dynamically generated. The long text in the second cell causes the table width to grow beyond what is needed to fit the first cell.
How can I get the bottom cell to wrap to another row, instead of widening the table?
I can't use a fixed width for the second cell, because the first cell content is not known until run time.
<table border="1">
<tr><td>name: <input type="text"></input></td></tr>
<tr><td>blah blah blah blah blah blah blah blah blah blah</td></tr>
</table>