我有一個表格,有三個td
,每個表格都需要有圖像。 td
的寬度和高度是固定的,但圖像大小可能會有所不同。目標是適應圖像而不會在細胞或圖像本身中產生扭曲。不能使用background-image
屬性(糟透了,我知道!)。下面的代碼:HTML電子郵件 - 適合表格單元格中的圖像
<table cellpadding="2" cellspacing="2" width="600">
<tr>
<td width="190" height="190" align="center">
<img src="https://images.imgbox.com/fb/e0/53ItYqFd_o.jpg" style="display: block; width: 100%; height:auto;" />
</td>
<td width="190" height="190" align="center">
<img src="https://images.imgbox.com/13/e7/pM2IjFYr_o.jpg" style="display: block; width: 100%; height:auto;" />
</td>
<td width="190" height="190" align="center">
<img src="https://images.imgbox.com/13/e7/pM2IjFYr_o.jpg" style="display: block; width: 100%; height:100%;" />
</td>
</tr>
</table>
我已經在三個單元嘗試三種不同的風格 - 沒有給我在那裏得到的圖像調整的結果。任何幫助讚賞。謝謝。
你給了TD和圖像大小不同。給圖像大小等於td。 style =「display:block; width:190px; height:190px;」 –
擊敗目的 - 試圖實現不同大小的圖像,以適應固定大小的表格單元而不失真。 – JeezItsMe