|
Outlook Desktop 渲染错乱、换行异常 |
全部替换为
|
| 外部字体(Google Fonts) |
Gmail/Outlook 加载失败,回退至默认字体 |
仅用系统安全字体栈 |
| margin / padding 在 |
外使用 |
部分客户端(如 Yahoo)忽略 |
所有间距通过 |
的 padding 控制 |
| :hover / @media 响应式 |
仅 Gmail Web 支持部分 :hover;@media 在 Outlook 完全无效 |
移动端适配依赖 width="100%" 表格 + max-width 容器(Gmail App 支持有限) |
| SVG 或 Base64 图片 |
Outlook 2016+ 仅支持部分 SVG,Base64 被多数客户端拦截 |
使用托管 PNG/JPG 链接 |
✅ 最终建议工作流
-
设计阶段:按 600px 宽度设计(适配主流邮箱宽度),避免复杂栅格;
-
编码阶段:手写表格结构 + 100% 内联样式;使用 MJML(编译为安全 HTML)或 Foundation for Emails 可提升效率,但需验证输出;
-
测试阶段:必测环境包括:Gmail(Web/iOS/Android)、Outlook(Web/Desktop/Windows Mobile)、Apple Mail、Yahoo Mail;推荐工具:Email on Acid 或 Litmus;
-
发送前:用 Mailchimp CSS Inliner Tool 或 Putsmail 自动内联(但建议手动校验关键样式)。
邮件开发没有银弹,唯有敬畏客户端差异、坚持最小可行样式、持续实测验证——方能在碎片化的收件箱中,交付真正“所见即所得”的品牌体验。
立即学习“前端免费学习笔记(深入)”;
 ![HTML邮件开发实战指南:兼容主流邮箱客户端的编码规范]() <!-- 外层容器:100% 宽度表格,模拟 body margin -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="max-width: 600px; margin: 0 auto; background-color: #ffffff;">
<tr>
<td align="left" style="padding: 12px 9px 1px; margin-bottom: 10px;">
<!-- 标题行 -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="font-family: 'Open Sans', Helvetica, Arial, sans-serif; font-size: 16px; line-height: 24px; color: #000000;">
Hello,
</td>
</tr>
</table>
<!-- 正文段落(用 table 模拟段落间距) -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin-top: 8px;">
<tr>
<td style="font-family: 'Open Sans', Helvetica, Arial, sans-serif; font-size: 13px; line-height: 18px; color: #787878;">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nulla turpis magna<br>
cursus sit amet, suscipit a, interdum id, felis. Ut tempus purus at lorem.<br>
Integer rutrum, orci vestibulum ullamcorper ultricies, lacus quam ultricies odio, vitae placerat pede sem sit amet enim.
<a href="https://blog.inpage.cz/obrazek/2/kitten-jpg/" style="color: #f26503; text-decoration: underline;">here</a>.<br><br>
Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.
</td>
</tr>
</table>
<!-- 图片区块(居左,带边框与外边距) -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin-top: 16px;">
<tr>
<td style="padding: 10px 0;">
@@##@@
</td>
</tr>
</table>
<!-- 强调标题(居中,带下划线) -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%" style="margin-top: 24px;">
<tr>
<td align="center" style="font-family: 'Open Sans', Helvetica, Arial, sans-serif; font-size: 24px; line-height: 36px; color: #f26503; text-decoration: underline;">
here, lorem
</td>
</tr>
</table>
</td>
</tr>
</table> |