2015-09-16 48 views
0

我正在使用Mailchimp進行通訊。我在Gmail中遇到了很多問題。 具體說明:我知道Gmail不支持CSS,因此我正在將風格寫入HTML。一切都很好,但不是按鈕和文本的填充:它不顯示在Gmail上。Mailchimp和Gmail:可以看到填充

<table align="left" border="0" cellpadding="0" cellspacing="0" width="50%" class="columnsContainer" style="border-collapse: collapse;mso-table-lspace: 0pt;mso-table-rspace: 0pt;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;max-width: 298px; align:left; text-align: left;"> 

enter image description here

我該如何解決呢?

+0

如果您正在使用表格,然後設置高度和寬度。例如; '​​

Button
' – CodeRomeos

+0

@CodeRomeos嗨,是的,我正在使用表標記。我剛剛編輯了第一篇文章。現在你可以看到... –

回答

0

你可以這樣做。

<table width="50%"> 
 
<tr> 
 
    <td style="border:1px solid red"><div style="width:180px;text-align:center;margin:20px auto;border:1px solid red;height:30px;line-height:30px;">Button</div>fake padding</td>  
 
</tr> 
 
<tr> 
 
    <td style="border:1px solid red"><div style="width:80%;text-align:justify;margin:20px auto;border:1px solid red;">content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content content</div>fake padding</td> 
 
</tr> 
 
</table>

做讓我們知道,如果任何問題!

相關問題