【问题标题】:cannot set cell spacing between cell in outlook - html emails无法在 Outlook 中的单元格之间设置单元格间距 - html 电子邮件
【发布时间】:2018-08-18 12:20:27
【问题描述】:

无法在 Outlook 和 Windows 邮件中实现适当的单元格间距:

应该是这样的:

这是我使用的代码:

    <center>
    <table cellspacing="10" cellpadding="0" width="90%" style="border-spacing: 10px;border-collapse: separate; width:90%">
    	<tbody>
    		<tr>
    			<td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px">
    				<table >
    					<tr>
    						<td >
    							<a class="mcnButton " title="Leaderhip & Charisma" href="http://www.cfmt.it/formazione/corso/yoga-coaching-leadership-e-carisma?ed=112122" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Leadership e Carisma</a>
    						
    						</td>
    					</tr>
    				</table>
    			</td>
    			<td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px">
    			<table >
    					<tr>
    						<td >
    							<a class="mcnButton " title="Energia Focus e Resilienza" href="http://www.cfmt.it/formazione/corso/yoga-coaching-energia-focus-e-resilienza" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Energia Focus e Resilienza</a>
    						
    						</td>
    					</tr>
    				</table>
    			</td>
    		
    		</tr>
    		<tr>
    			<td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px" >
    				<table >
    					<tr>
    						<td >
    							<a class="mcnButton " title="Leadership e Conflittualità" href="http://www.cfmt.it/formazione/corso/yoga-coaching-leadership-e-conflittualita" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Leadership e Conflittualità</a>
    						
    						</td>
    					</tr>
    				</table>
    			</td>
    			<td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px">
    				<table >
    					<tr>
    						<td >
    							<a class="mcnButton " title="Leaderhip femminile" href="http://www.cfmt.it/formazione/corso/yoga-coaching-leadership-femminile" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Leaderhip Femminile</a>
    						
    						</td>
    					</tr>
    				</table>
    			</td>
    		</tr>
    	</tbody>
    </table>
    </center>

我在 mailchimp 编辑器中,我该如何解决这个问题?我试过mso-cellspacing,但没有,我也读过outlook不支持margin,

此设置在 gmail 中运行良好

【问题讨论】:

  • 您是否尝试过带有 CTA 的 3 x 3 表格?它会起作用的,你不需要担心单元格间距。如果您有兴趣,请告诉我,我将通过示例将其发布为答案

标签: css html-table html-email


【解决方案1】:

您当前的设置是cellspacing="0" 尝试将其提高到cellspacing="10"

通过这样做,它在 Outlook 2016、2013、2010 中运行良好。

我测试的示例代码如下。

祝你好运。

<center>
<table cellspacing="10" cellpadding="0" width="90%" style="border-spacing: 10px;border-collapse: separate; width:90%">
    <tbody>
        <tr>
            <td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px">
                <table >
                    <tr>
                        <td >
                            <a class="mcnButton " title="Leaderhip & Charisma" href="http://www.cfmt.it/formazione/corso/yoga-coaching-leadership-e-carisma?ed=112122" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Leadership e Carisma</a>

                        </td>
                    </tr>
                </table>
            </td>
            <td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px">
            <table >
                    <tr>
                        <td >
                            <a class="mcnButton " title="Energia Focus e Resilienza" href="http://www.cfmt.it/formazione/corso/yoga-coaching-energia-focus-e-resilienza" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Energia Focus e Resilienza</a>

                        </td>
                    </tr>
                </table>
            </td>

        </tr>
        <tr>
            <td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px" >
                <table >
                    <tr>
                        <td >
                            <a class="mcnButton " title="Leadership e Conflittualità" href="http://www.cfmt.it/formazione/corso/yoga-coaching-leadership-e-conflittualita" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Leadership e Conflittualità</a>

                        </td>
                    </tr>
                </table>
            </td>
            <td align="center" valign="middle" class="mcnButtonContent" style="background:#D03C48;font-size:12px;padding:10px;border-radius:3px">
                <table >
                    <tr>
                        <td >
                            <a class="mcnButton " title="Leaderhip femminile" href="http://www.cfmt.it/formazione/corso/yoga-coaching-leadership-femminile" target="_blank" style="font-weight: bold;letter-spacing: normal;line-height: 100%;text-decoration: none;color:#fff;mso-line-height-rule: exactly;-ms-text-size-adjust: 100%;-webkit-text-size-adjust: 100%;display: block;">Leaderhip Femminile</a>

                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </tbody>
</table>
</center>

【讨论】:

  • 对不起,我发布了另一个版本的代码,我确实尝试将单元格间距设置为 10,但它不起作用,现在我解决了设置边框
  • 我刚刚在 Outlook 2016 中尝试过,它运行良好。这就是我的回答所依据的。如果您要更改代码,您应该有礼貌地更新您希望我们帮助诊断的代码。否则会浪费我们的时间。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2015-01-20
  • 2021-07-16
  • 1970-01-01
  • 2012-05-22
  • 2010-09-25
相关资源
最近更新 更多