不得不为客户重建电子邮件,出于某种原因我在Outlook中发生了一个奇怪的故障(这在任何其他浏览器中都没有发生),它将jpeg拆分为2.我没有看到这种情况发生之前并不确定如何修复它,任何人都有任何想法?
bin/flink
答案 0 :(得分:0)
嗯,outlook会这样做,因为它使用非常旧的HTML电子邮件渲染引擎。 您应该使用正确的tr和tds以及左侧对齐文本来缩放/调整图像,而不是在img标记中使用宽度和高度。如果你有整个html部分,那可能会有所帮助。 https://litmus.com/blog/a-guide-to-rendering-differences-in-microsoft-outlook-clients
<table>
<tr>
<td>
<table>
<tr>
.....
.....
<td width="218" height="418" rowspan="5">
<img alt="alt text here" border="0" src="http://www.maximiles.co.uk/m3img?l=9096912522165" >
</td>
....
....
</tr>
</table>
</td>
</tr>
</table>
&#13;