为什么 Microsoft Outlook 在发送 HTML 电子邮件时不遵循列表样式?

发布于 2024-11-29 01:14:52 字数 290 浏览 0 评论 0原文

我有以下代码,但我一生都无法让它在 Microsoft Outlook 中工作。

<ul style="margin-left: 50px; line-height: 50px; list-style: none;">
    <li style="font-size: 1.5em; list-style: none;">[UniqueCode]</li>
</ul>

还有其他方法可以达到相同的结果吗?我正在尝试向一群人发送 HTML 电子邮件。

I have the following code and for the life of me I can't get it to work in Microsoft Outlook.

<ul style="margin-left: 50px; line-height: 50px; list-style: none;">
    <li style="font-size: 1.5em; list-style: none;">[UniqueCode]</li>
</ul>

Is there another way to achieve the same result? I am attempting to send a HTML email to a group of people.

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

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

发布评论

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

评论(2

偏闹i 2024-12-06 01:14:52

查看 Campaign Monitor 指南,了解 HTML 电子邮件中的 CSS 支持。

Outlook 2007 或 Outlook 2010 不支持 list-style-imagelist-style-positionlist-style-type

。用于布局的单元格是 HTML 电子邮件构建中的标准做法,因为 Outlook 中的 CSS 支持非常糟糕。

尝试使用为列表布局指定精确宽度的表格单元格,并将每个项目放在新行中或用
s
分隔。

Have a look at Campaign Monitor's guide to CSS support in HTML emails.

list-style-image, list-style-position and list-style-type are not supported in Outlook 2007 or Outlook 2010.

Using table cells for layout is standard practice in HTML email builds because CSS support in Outlook is really bad.

Try using table cells with exact widths specified for the layout of your list, and have each item in a new row or separated by <br>s.

一曲爱恨情仇 2024-12-06 01:14:52

我尝试为

    提供与背景匹配的文本颜色,然后使用 为文本分配正确的颜色。例如,如果您使用带有黑色文本的 #c4c4c4 背景。

<ul style="list-style: none;color:#c4c4c4;">
  <li><span style="color:#000000;">Something</span></li>
</ul>

项目符号(如果显示)会与背景融为一体,但会显示文本。

I tried giving the <ul> a text color that matched the background and then used a <span> assigning the correct color for the text. For instance, if you were using a #c4c4c4 background with black text.

<ul style="list-style: none;color:#c4c4c4;">
  <li><span style="color:#000000;">Something</span></li>
</ul>

The bullets, if displayed, blend in with the background, but the text will show.

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