我有一封电子邮件,其中有一个带有背景图像的单元格。我需要为手机更改此图像 src。是否有可能做到这一点 ?我看到很多使用<img>
标签的例子,但在我的例子中,这是一张背景图片。
我决定在 Outlook 中剪切背景图像(防弹 bg 还不够)所以基本上我的代码看起来像这样
<!--[if lt mso 9]> <!-->
<td
background="https://assets.myjobglasses.com/email/campaigns/aladdin/red-carpet.png" bgcolor="#ffffff"
valign="top" align="center"
style="background-repeat: no-repeat;"
height="<%= red_carpet_height %>"
class="red-carpet-bulletproof-background"
>
<!--<![endif]-->
<!--[if gte mso 9]>
<td
valign="top" align="center"
height="<%= red_carpet_height %>"
class="red-carpet-bulletproof-background"
>
相反,我想在移动设备上使用此图像。我怎样才能做到这一点 ?(我可以选择复制代码并添加一些可见性类,但如果我的电子邮件太长,Gmail 会选择删除可见部分,所以我想避免这种激烈的措施)