如何使具有 2 列(单元格)的表格如下所示:
- 第一个单元格根据内容缩小
- 另一个单元格适合表格的其余部分(比两个内容加起来更宽)
例子:
<table style="width: 500px;">
<tr>
<td>foo</td>
<td>bar</td>
</tr>
</table>
我需要表格看起来像这样:
.___________________________________________________________________________.
| foo | bar <a lot of space here> |
|_____|_____________________________________________________________________|
500 px total width
注意:我不知道“foo”的宽度,所以我不能设置“50px”、“10%”或类似的东西。