Outlook渲染问题,渲染文本太大

发布于 2024-07-08 07:42:50 字数 876 浏览 11 评论 0原文

我正在尝试为我们的组织创建新闻通讯标准,但遇到 Outlook 呈现文本过大的问题。

这是页面的 css 部分

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 75%;
    background: url(http://www.blah.com/stuff.gif);
    }
a {
    color: #f24c22 !important;
    }
a:visited {
    color: #f24c22 !important;
    }
a:hover {
    color: #3d7ac5 !important;
    }
table {
    background: #ffffff;
    }
h1 {
    font-size: 1.3em;
    }
h2 {
    font-size: 1.2em;
    color: #494949;
    padding-top: 0 !important;
    margin-top: 0 !important;
    }
h3 {
    font-size: 1.1em;
    color: #12377c;
    }
p {
    padding-top: 0 !important;
    margin-top: 0 !important; 
    color:#333333;
    }
   .style1 {color: #333333}
   .style2 {color: #12377c}
   .style3 {
       font-size: smaller;
       color: #666666;
   }

有什么建议可能导致这种情况吗?

I'm trying to create a newsletter standard for our org and having problems with Outlook rendering the text too large.

Here is the css section of the page

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 75%;
    background: url(http://www.blah.com/stuff.gif);
    }
a {
    color: #f24c22 !important;
    }
a:visited {
    color: #f24c22 !important;
    }
a:hover {
    color: #3d7ac5 !important;
    }
table {
    background: #ffffff;
    }
h1 {
    font-size: 1.3em;
    }
h2 {
    font-size: 1.2em;
    color: #494949;
    padding-top: 0 !important;
    margin-top: 0 !important;
    }
h3 {
    font-size: 1.1em;
    color: #12377c;
    }
p {
    padding-top: 0 !important;
    margin-top: 0 !important; 
    color:#333333;
    }
   .style1 {color: #333333}
   .style2 {color: #12377c}
   .style3 {
       font-size: smaller;
       color: #666666;
   }

Any suggestions why this might be caused?

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

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

发布评论

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

评论(5

等待圉鍢 2024-07-15 07:42:50

您是否尝试过使用 main *{font-size: 12pt;}

Outlook 默认情况下使用 Trident、IE 引擎来处理传入邮件,并使用 Word HTML 渲染引擎来处理传出邮件... 直到 Office 2007,人们都讨厌它。

现在,它使用 Word 2007 的渲染是比较缺乏在 Microsoft 页面上,您可以看到 body 元素不支持 style 属性。

Have you tryed using main *{font-size: 12pt;} ?

Outlook by default uses Trident, IE's engine for incoming mail, and Word HTML rendering engine for outgoing mail... Until Office 2007, and people hate it.

Now, it uses Word 2007's rendering, wich is rather lacking. On microsoft's page you can see that de body element doesn't support the style attribute.

佼人 2024-07-15 07:42:50

如果您想为字体设置特定大小,那么您可能应该使用固定大小类型,例如 pt。 而不是像 em/% 这样的变量

请参见此处了解我的意思。

If you want to set a specific size for you fonts, then you should probably use a fixed size type like pt. Rather than a variable one like em/%

See here for what I mean.

樱娆 2024-07-15 07:42:50

许多邮件阅读器从收到的任何电子邮件中删除“正文”标签,或者忽略应用于此元素的样式。 尝试将字体大小应用于封闭的 div。

Many mail readers strip the "body" tag from any email received, or disregard styles applied to this element. Try applying the font size to an enclosing div.

书信已泛黄 2024-07-15 07:42:50

将字体大小抽象为更小,我发现在标准视图中这是等效的大小。 考虑到它是一个基本模板,重写 div 中的页面,引用 div 的 ID 来渲染,效果很好。 在各种电子邮件帐户(包括 gmail、hotmail)上进行了测试,并通过 Outlook 呈现。 Outlook 是唯一有问题的,同一页面引用链接失败。

abstracted the font size to smaller, which I found at standard viewing to be the equivalent size. Rewrite page in div's considering it's a basic template, refered to the ID's of the divs in order to render, worked fine. Tested it on various email accounts including gmail, hotmail and rendered through outlook. Outlook was the only problematic one, where the same page refferencial links fail.

木森分化 2024-07-15 07:42:50

添加这些元标记,您会发现 Word/Outlook“神奇地”将页面(包括图像)呈现为正确的大小:

<meta name="ProgId" content="Word.Document" />
<meta name="Generator" content="Microsoft Word 12" />
<meta name="Originator" content="Microsoft Word 12" />

我不知道为什么 Outlook 会这样做,我收到的大多数公司电子邮件在 Outlook 中看起来很糟糕 - 但是,使用这些标记,我发送的看起来很原始。

Add these metatags and you will find that Word / Outlook "magically" renders the page (including images) the correct size:

<meta name="ProgId" content="Word.Document" />
<meta name="Generator" content="Microsoft Word 12" />
<meta name="Originator" content="Microsoft Word 12" />

I have no idea why Outlook does this, most corporate emails I get look terrible in Outlook - however, with these tags, the ones I send look pristine.

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