I am working with a <table>
that has 3 columns structured as follows:
table {
border: 1px dashed goldenrod;
}
td {
border: 1px solid gray;
}
<table>
<tr>
<td width="120">Some content</td>
<td width="150">Some content</td>
<td width="100%">Some content</td>
</tr>
</table>
Although the 3rd column is set to occupy the remaining width, it seems to compress the first 2 columns in my case...
If I do not specify a width for the 3rd column/td, I can see the specified widths for the first 2 columns...
I would appreciate any help or advice on this issue.
Note: The table has already been set with width="100%"