我们为我们的电子邮件消息找到了一段代码,它可以调整移动设备的电子邮件大小,但保持文本的大小。
我们对电子邮件消息使用拆分图像,并在图像上方显示文本。问题是我们在 tr 命令的图像中得到一条白线。如果从标题中删除以下代码,则图像显示没有白线。当我重新添加代码时,在 iPhone 或 Droid 上查看电子邮件时,我无法摆脱白线。它在所有电子邮件客户端的桌面/笔记本电脑上完美显示。
这是我们放在 head 部分的代码。
<style type="text/css"> @media only screen and (max-width: 600px)
{/*CSS styles here will be applied on supporting mobile devices*/
table, div {width:100% !important; max-width: 600px !important; position:relative !important; height:auto !important; overflow:hidden !important; top:0px !important;}
img {max-width:100%; height: auto !important;}}
</style>
关于如何摆脱白线的任何建议?