1

我已经在地址 yahoo (...@yahoo.com) 上发送了时事通讯 html 在时事通讯 html 中我使用代码:

<div style="background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5); bottom: 0px; padding: 0; margin: 0; left: 0; overflow: hidden; position: absolute; width: 100%; height: 55px;">                                                              
   <a href="">title</a>
</div>

我读了邮件雅虎,结果是

<div style="background: none repeat scroll 0 0; bottom: 0px; padding: 0; margin: 0; left: 0; overflow: hidden; position: absolute; width: 100%; height: 55px;">                                                                 
    <a href="">title</a>
</div>

如何解决?

4

1 回答 1

1

对于 html 电子邮件,您需要调用未组合的样式声明。使用简单background-color:#252525;的例子。

您显然来自网络背景。您会发现电子邮件编码就像 90 年代的网络编码一样 - 您可以做的(至少在所有电子邮件客户端中)非常有限。我会避免使用 div 来支持表格,不确定 rgba、滚动、溢出等是否工作......

于 2012-12-13T16:01:02.297 回答