I can put an HTML input box inside a table cell like this
<TD COLWIDTH='50' ><INPUT type='text' size='**some number**' value='123456'></TD>
BUT
if ‘some number’ is such that the input box is too large, it pushes the cell wider than the value specified in the COLWIDTH
Is there a way to specify that the input box should just fill the cell?
What I mean is that If the input box wants to be smaller than COLWIDTH then it should expand to fill the cell width and if the input box wants to be bigger than the cell then it would just shrink the size of the cell.