Outlook 2007 邮件上的 HTML 图像呈现

发布于 2024-10-02 19:13:11 字数 242 浏览 2 评论 0原文

我使用 Microsoft Outlook 2007 以电子邮件形式接收 HTML 时事通讯。电子邮件中有多个图像,这些图像是使用“img”标签的“宽度”和“高度”属性排列的。

当我尝试在任何浏览器中打开 html 代码时,图像和文本排列正确。但在 Outlook 2007 上,它会变得混乱,即使高度和宽度在 HTML 代码中明确给出,图像也会以随机大小显示。

谁能告诉我如何在 Outlook 2007 中正确显示图像,以免格式混乱?

I am receiving HTML newsletter as emails using Microsoft Outlook 2007. There are several images in the email which are arranged using 'width' and 'height' attributes of the 'img' tag.

When I try to open the html code in any browser, the images and text are arranged properly. But on Outlook 2007, it gets messed up and the images shows up in random sizes even though height and width are given explicitly in the HTML code.

Can anyone tell me how to get the images displayed properly in the Outlook 2007 so that the formatting does not get messed up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

伤痕我心 2024-10-09 19:13:11

对于 Outlook,

<img style="height:30; width:.."/>

不起作用。

一个人必须给予这样的:

<img height="30" width="70" .../>

For Outlook,

<img style="height:30; width:.."/>

does not work.

One has to give like:

<img height="30" width="70" .../>
葬﹪忆之殇 2024-10-09 19:13:11

我想我有一个解决方案:
转到Word>单词选项>高级>常规/网络选项>图片:
如果目标显示器的每英寸像素值为 72,请将其更改为 96。重新启动Word &前景。

这终于为我解决了。希望有帮助。

I think I have a solution:
Go to Word > Word options > Advanced > General / Web options > Pictures:
If target monitor has the value 72 for pixels per inch, change this to 96. Restart Word & Outlook.

This finally fixed it for me. Hope it helps.

想念有你 2024-10-09 19:13:11

在图像的声明的宽度或高度接近或等于 0 的情况下,Outlook 2007 似乎会尊重图像的实际宽度和高度,而不是声明的图像宽度和高度。(并且 Outlook完全不考虑 widthheight css 属性。)您最好的选择是重新调整相关图像的大小,以便它们实际上具有您声明的高度和宽度,而不是重新调整它们的大小。

Outlook 2007 seems respects the actual width and height of the image over the declared width and height of the image in cases where the declared width or height of the image is close to or equal to 0. (And Outlook does not respect the width and height css attributes at all.) Your best bet is to re-size the images in question so that they actually have the height and width you declare, rather than re-sizing them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文