我的电子邮件在Outlook 2010/2013/2016中看起来很奇怪。 Outlook似乎在我的电子邮件周围添加了默认缩进。它是期望的行为吗?可以解决吗?
我不知道为什么我的测试段落不位于左上角。这是我的HTML:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Fake email title</title>
<style type="text/css">
* {
margin: 0 0 0 0 !important;
padding: 0 0 0 0 !important;
}
</style>
</head>
<body bgcolor="orange" style="width: 100% !important; min-width: 100% !important; margin: 0 0 0 0 !important; padding: 0 0 0 0 !important;">
<p style="background-color: blue; font-size: 14px; color: #ffffff; width: 100% !important; min-width: 100% !important; margin: 0 0 0 0 !important; padding: 0 0 0 0 !important;">
This is my test paragraph.
</p>
</body>
</html>