他!
我对此很陌生,正在尝试编写我的第一个 html 电子邮件代码。我在 Outlook 和 Windows 10 中遇到 html 内联电子邮件代码的问题。它会在两个 td 之间产生不必要的间隙,从包含 img 的 td 开始一直到结束。https://codepen.io/kribits/pen/jOOYNmv。已经尝试了一些提示和技巧,例如更改为 display: block; 并用单独的标签分隔这两个 td,但这没有帮助。真的在寻找一些有用的答案。[巨大差距][2]
这是代码:
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style color: #EC6700;></style>
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<title>Mobilly signature</title>
<style>
u + #body a {
color: inherit;
text-decoration: none;
font-size: inherit;
font-family: inherit;
font-weight: inherit;
line-height: inherit;
}
a {
color: #EC6700 !important;
}
</style>
<!-- <meta name="format-detection" content="telephone=no" /> -->
</head>
<body id="body">
<table>
<tbody height="100%" width="100%" cellpadding="0" cellspacing="0" border="0"
style="box-sizing: border-box; border-collapse: collapse;">
<tr style="box-sizing: border-box; border-collapse: collapse;">
<td>
<span
style="font-family: 'Open Sans', sans-serif !important; font-size:14px; line-height:20px; margin: 0;">Ar
cieņu,</span>
<br>
<p style="font-family: 'Open Sans', sans-serif !important; font-size:14px; line-height:20px;">
<b>Vārds Uzvārds</b><br>Zīmola vadītājs<br>SIA Company<br>Address<br>
</p>
</td>
</tr>
LEATH
相关分类