gpt4 book ai didi

css - Outlook 中的文本不使用行高

转载 作者:技术小花猫 更新时间:2023-10-29 11:17:29 24 4
gpt4 key购买 nike

我正在用 Html 创建电子邮件,我偶然发现了 Outlook 2010 的问题。这是我的代码:

<td background="images/11-text-1--alpha-d3c29e.jpg" 
bgcolor="#d3c29e" width="514" height="460" valign="top">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false"
style="width:514px;height:460px;">
<v:fill type="tile" src="images/11-text-1--alpha-d3c29e.jpg" color="d3c29e" />
<v:textbox inset="0,0,0,0">
<![endif]-->
<p style="margin:0;padding:0;font-family:'Courier New',Courier,monospace;
font-size:14px;font-weight:bold;color:#000000;line-height:15px;">
#TEXT
</p>
<!--[if gte mso 9]> </v:textbox> </v:rect> <![endif]-->
</td>

现在我想改变文本的行高,但是当我在我的 p 标签中改变它时,它不会这样做,而且如果我把它放在 td 和/或 MSO 异常(exception)中它也不会做 Outlook 的把戏。有什么方法可以使这项工作正常进行,或者有人知道 Outlook 的解决方法吗?

最佳答案

您需要使用 mso 样式“mso-line-height-rule”。这用于强制 Outlook 遵守行高规则。请注意,这需要在声明的行高之前添加,否则它将不起作用。见下文:

<td background="images/11-text-1--alpha-d3c29e.jpg" 
bgcolor="#d3c29e" width="514" height="460" valign="top" style="margin:0;padding:0;font-family:'Courier New',Courier,monospace; font-size:14px;font-weight:bold;color:#000000;mso-line-height-rule:exactly; line-height:15px;">
<!--[if gte mso 9]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" fill="true" stroke="false"
style="width:514px;height:460px;">
<v:fill type="tile" src="images/11-text-1--alpha-d3c29e.jpg" color="d3c29e" />
<v:textbox inset="0,0,0,0">
<![endif]-->
#TEXT
<!--[if gte mso 9]> </v:textbox> </v:rect> <![endif]-->
</td>

关于css - Outlook 中的文本不使用行高,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39143932/

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