Flex / Grid 属性在 gmail 电子邮件中被删除
Flex / Grid properties are deleted in gmail email
我在 PHP 中有一个脚本可以通过邮件发送以下内容 HTML :
<html class="no-js" lang="en">
<body>
<div style="width: 70%;background-color: #060b2b;margin: auto;flex-direction: column;display: flex;">
<h1 style="margin-top: 50px;color: white;margin-left: auto;margin-right: auto;">Vous avez reçu une nouvelle notification.</h1>
<div style="width: 80%;padding: 50px;margin-top: 50px;background-color: #222;margin-left: auto;margin-right: auto;display: flex;">
<p style="color:white;margin: auto;text-align: center;">{{$notification}}</p>
</div>
<a href="" style="margin-top: 50px;margin-bottom: 50px;margin-left: auto;margin-right: auto;color: white;padding:15px;background-color: #0E0E0E;">Accéder à mon compte</a>
</div>
</body>
</html>
但是收到的电子邮件(当我检查主要 div 时)没有显示 属性 flex-direction: column;
gmail 似乎过滤了那些属性?
这正常吗?
设计HTML 电子邮件不同于设计HTML 网站。电子邮件客户端和网络浏览器之间存在巨大的技术差距。就好像浏览器在不断发展,但电子邮件客户端却停滞在 1998 年。
在 HTML 电子邮件的世界里,嵌入式和外部样式很糟糕,CSS3 很糟糕,JavaScript 很糟糕,而...用于布局的内联样式和表格很好。在这个世界上,老式的编码方法依然存在。
Gmail 会删除 CSS3 属性也就不足为奇了。最好的选择是坚持使用表格和内联样式。
更新:Gmail now supports embedded styles.
更多信息:
- CSS in HTML Email
- Best practices for styling HTML emails
- Best Practices & Considerations when writing HTML Emails
我在 PHP 中有一个脚本可以通过邮件发送以下内容 HTML :
<html class="no-js" lang="en">
<body>
<div style="width: 70%;background-color: #060b2b;margin: auto;flex-direction: column;display: flex;">
<h1 style="margin-top: 50px;color: white;margin-left: auto;margin-right: auto;">Vous avez reçu une nouvelle notification.</h1>
<div style="width: 80%;padding: 50px;margin-top: 50px;background-color: #222;margin-left: auto;margin-right: auto;display: flex;">
<p style="color:white;margin: auto;text-align: center;">{{$notification}}</p>
</div>
<a href="" style="margin-top: 50px;margin-bottom: 50px;margin-left: auto;margin-right: auto;color: white;padding:15px;background-color: #0E0E0E;">Accéder à mon compte</a>
</div>
</body>
</html>
但是收到的电子邮件(当我检查主要 div 时)没有显示 属性 flex-direction: column;
gmail 似乎过滤了那些属性?
这正常吗?
设计HTML 电子邮件不同于设计HTML 网站。电子邮件客户端和网络浏览器之间存在巨大的技术差距。就好像浏览器在不断发展,但电子邮件客户端却停滞在 1998 年。
在 HTML 电子邮件的世界里,嵌入式和外部样式很糟糕,CSS3 很糟糕,JavaScript 很糟糕,而...用于布局的内联样式和表格很好。在这个世界上,老式的编码方法依然存在。
Gmail 会删除 CSS3 属性也就不足为奇了。最好的选择是坚持使用表格和内联样式。
更新:Gmail now supports embedded styles.
更多信息:
- CSS in HTML Email
- Best practices for styling HTML emails
- Best Practices & Considerations when writing HTML Emails