如果不使用 Javascript ,我似乎无法找到一种方法来做到这一点。
假设我有一个<table>
,并且我不知道填充第一列的内容的潜在宽度。这<table>
使得width:100%
其余列可以根据需要调整大小,但我想保持第一列的宽度固定,这样它就不会比内容大。
没有Javascript这可能吗?
<table>
<tr>
<th>Dynamic content column of unknown width</th>
<th>Some other column that is allowed to grow/shrink</th>
</tr>
<tr>
<td>Lorem ipsum ...</td>
<td>195383 ...</td>
</tr>
</table>