为什么 Microsoft Outlook 在发送 HTML 电子邮件时不遵循列表样式?
我有以下代码,但我一生都无法让它在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 Campaign Monitor 指南,了解 HTML 电子邮件中的 CSS 支持。
Outlook 2007 或 Outlook 2010 不支持
list-style-image
、list-style-position
和list-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
andlist-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
.我尝试为
提供与背景匹配的文本颜色,然后使用
为文本分配正确的颜色。例如,如果您使用带有黑色文本的
#c4c4c4
背景。项目符号(如果显示)会与背景融为一体,但会显示文本。
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.The bullets, if displayed, blend in with the background, but the text will show.