Here is an example to illustrate my question:
<table style="width: 100%;">
<tr>
<td>First Cell</td>
<td>Second Cell</td>
</tr>
</table>
Is there a way to set the widths in such a manner that the first cell/column adjusts its width based on the content, while allowing the second cell to fill the remaining width of the table?
I am using a GWT HorizontalPanel for this purpose. Any suggestions involving HTML, CSS, or GWT tricks would be greatly appreciated.
Thank you!