我有一张这样的桌子:
<table border=1 style="width: 100%">
<tbody>
<tr>
<td>
squish this one
</td>
<td>
expand this one
</td>
</tr>
</tbody>
</table>
Run Code Online (Sandbox Code Playgroud)
我希望左列尽可能地缩小,而右列则占据屏幕的其余部分.这可能吗?
<table border=1 style="width: 100%">
<tbody>
<tr>
<td width="1">
squish this one
</td>
<td width="*">
expand this one
</td>
</tr>
</tbody>
</table>
Run Code Online (Sandbox Code Playgroud)