我有以下代码:
<table>
<tr>
<td class="first">
<img src="ReallyLargeImage.png" />
</td>
<td class="second">
One line of text<br />
Another line of text<br />
</td>
</tr>
<tr>
<td class="first">
<img src="AnotherReallyLargeImage.png" />
</td>
<td class="second">
This<br />
has<br />
four<br />
lines<br />
</td>
</tr>
...
</table>
我希望高度td.second
来确定每行的高度,并且图像按td.first
比例缩小(保持它们的大小比例)以适应该高度。
如果我可以只使用 CSS/属性来保持整洁,那就太好了,javascript 也可以。