gpt4 book ai didi

css - 使用 PNG 而不是 JPG 图像来修复 Outlook 渲染问题?

转载 作者:行者123 更新时间:2023-11-27 23:53:45 26 4
gpt4 key购买 nike

我们的 HTML 电子邮件模板在除 outlook 120 DPI 之外的每个 ESP 中看起来都很棒。到目前为止,建议的博客提示没有奏效。

有没有人试过在他们的电子邮件中使用 PNG 图像而不是 JPG 图像?这是否有助于解决图像渲染问题或导致其他问题?

我已经尝试通过各种博客提示编辑我的表格和媒体查询,例如 https://litmus.com/blog/mastering-outlook-a-look-back-at-common-rendering-issues 中的提示。 .我可以让每个 ESP 正确呈现我们的模板,但不是 Outlook 120 DPI

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=9; IE=8; IE=7; IE=edge" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i" rel="stylesheet">
<title>Smartsheet</title>

<!-- Default Styles -->
<style type="text/css">
.ExternalClass {
width: 100%;
}
.ExternalClass, .ExternalClass p, .ExternalClass span, .ExternalClass font, .ExternalClass td, .ExternalClass div {
line-height: 100%;
}
table {
border-spacing: 0px !important;
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
table-layout: fixed;
}
table table {
table-layout: auto;
}
h2,h2 a,h2 a:visited,h3,h3 a,h3 a:visited,h4,h5,h6,.t_cht {
color: #363639;
}
@-ms-viewport {
width: device-width;
}
h1, h2, h3, h4 {
font-weight: normal;
}

上面的代码应该包含理解我的问题和 HTML 所需的基本 CSS。正如您应该能够看到的那样,磁贴中的图像被夸大了比例。我们在 outlook 120 DPI 中的所有图像都会发生这种情况。

最佳答案

Outlook 120DPI 看起来会更大,因为这就是它的全部意义所在。这是一个缩放功能。

如果不能正常缩放,您需要添加以下代码,由 Email on Acid 提供:

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:v="urn:schemas-microsoft-com:vml"
xmlns:o="urn:schemas-microsoft-com:office:office">

<head>
<!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml><![endif]-->
</head>

关于css - 使用 PNG 而不是 JPG 图像来修复 Outlook 渲染问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56382659/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com