这是我现在遇到的问题。我的HTML电子邮件左侧和右侧有这些边距,如Mac邮件中所示(在Gmail和Thunderbird中也可见):http://cl.ly/image/3j133f393Y3M/Screen%20Shot%202013-06-26%20at%201.22.04%20AM.png
我的目标是像这样的全角背景:http://cl.ly/image/1205093I1m34/Screen%20Shot%202013-06-26%20at%201.22.47%20AM.png
根据以下代码,我的背景宽度似乎已设置为100%:
<html>
<title>AASU VCU</title>
<body style="margin:0px 0px 0px 0px; padding:0px 0px 0px 0px; font-family: Helvetica, Arial, san-serif; background-color:#fff" bgcolor="#000">
</body>
<table bgcolor="#b2151b" style="color:#fff;font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:26px;width:100%;margin:0;padding:0">
<table cellpadding="0" cellspacing="0" width="100%" bgcolor="#b2151b" style="padding:0 40px; color:#fff"; font-family="Helvetica,Arial,san-serif"; font-size:"16px"; line-height="25px"; table-layout="fixed">
<tbody>
<tr>
<td bgcolor="#b2151b" width="450" style="color:#fff;font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:26px">
<br>
<br>
<table cellpadding="0" cellspacing="0" width="450" bgcolor="#b2151b" border="0" rules="none" frame="border" align="center" style="color:#fff; font-family:Helvetica,Arial,sans-serif; font-size:16px;line-height:26px; border-width:0px 0px 0px 0px; background-color:#b2151b" >
<tbody>
<tr>
<td width="450" valign="top" bgcolor="#b2151b" style="color:#a7abb1;font-family:Helvetica,Arial,sans-serif;font-size:16px;line-height:26px">
<a style="border:none!important;color:#ffffff;text-decoration:none;border-bottom:1px solid #666"><img src="http://f.cl.ly/items/3M3W1U0W1o1P1s3u1Q0C/White_transparent.png" alt="AASU VCU" style="border:none"></a>
</td>
</tr>
</tbody>
</table>
我在浏览器中测试了代码,无论我调整大小多少,背景似乎都能成功扩展到全宽。只有在邮件客户端才能看到这些边距。我错过了什么?
答案 0 :(得分:0)
我建议在第一个表元素中包含“border:0px”属性。我的经验法则是,当我没有设置值时,我将边距,填充和边框设置为0px。
祝你好运。答案 1 :(得分:0)
此外,您的</body>
结束标记位于<body>
标记下方。这可能也是一个问题。