I want apply margin property for my html newsletter
But Gmail ignores this CSS property
Is there any way to add margin to html element ?
Thanks
I want apply margin property for my html newsletter
But Gmail ignores this CSS property
Is there any way to add margin to html element ?
Thanks
使用 HTML 电子邮件,您需要回到黑暗时代并使用表格。悲伤但真实。
坚如磐石的 HTML 电子邮件将为您提供帮助。
是的,@Alex 说使用内联 CSS 是对的。但有一件事,没有使用 CSS 速记:而不是使用缩写样式规则margin:0 0 15px 50px
使用margin-top:0; margin-right:0; margin-bottom:15px; margin-left:50px;
表格是您可以用于时事通讯的最好的东西。还要记住,如果你使用 CSS,最好是内联。换句话说,像这样:
<table style="margin: 0 0 15px 50px; color: #FFFFFF;"></table>
标题中没有 CSS。