Gmail does not allow margin property

I want to apply the margin property to my html newsletter

But Gmail ignores this CSS property.

Is there any way to add margin to html element?

thank

+3
source share
3 answers

With HTML email, you need to go back to the dark ages and use tables. Sad, but true.

Rock Solid HTML Email helps you.

+5
source

Spreadsheets are the best things you can use for newsletters. Also remember that if you use CSS, it is better if you do this inline. In other words, like this:

<table style="margin: 0 0 15px 50px; color: #FFFFFF;"></table>

You do not have CSS in the title.

+2
source

@Alex , , CSS. , , CSS : margin:0 0 15px 50px margin-top:0; margin-right:0; margin-bottom:15px; margin-left:50px;

http://www.sitepoint.com/code-html-email-newsletters/

+1
source

Source: https://habr.com/ru/post/1760053/


All Articles