0
メディアクエリを使用せずに応答するHTMLメールを作成しています。それは動作しますが、多くのクライアントが使用するMicrosoft Outlook 2010では、2つのテーブル間にギャップがあります。他のすべてのデバイスでは、ギャップが表示されません。 Outlookのギャップを取り除くにはどうすればよいですか?HTMLの不要なギャップOutlook用メール
注:私は電子メールが応答するように、複数のテーブルを使用する必要があります。代わりに別のtdを使用すると、応答しません。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
<style type="text/css">
table td {
border-collapse: collapse;
}
.msoFix {
mso-table-lspace: -1pt;
mso-table-rspace: -1pt;
}
</style>
</head>
<body style="margin: 0px; padding: 0px; background-color: #FFFFFF;" bgcolor="#FFFFFF">
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center">
<div style="max-width:640px !important;">
<table class="msoFix" width="320" cellpadding="0" cellspacing="0" align="left" bgcolor="#CCCCCC">
<tr>
<td width="290" bgcolor="454545" align="left" style="padding: 0px;"><br>Table 1</td>
</tr>
</table>
<table class="msoFix" width="320" cellpadding="0" cellspacing="0" align="left" bgcolor="#EEEEEE">
<tr>
<td width="290" bgcolor="959595" align="left" style="padding: 0px;"><br>Table 2</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</body>
</html>