When working with a table field, I am allowing input as a file.
<table>
<tr>
<th>
<input type="file" name="icon" id="icon" />
</th>
</tr>
</table>
The file input field is recommended to have a width of 242-246px.
Initially, I tried setting the width like this:
<th width="50px"><input type="file" name="icon" id="icon" /></th>
However, the size did not change as expected. Any suggestions on how to address this issue?