首页 > 解决方案 > text-stroke-width 和 text-stroke-color 在 gmail 模板中不起作用

问题描述

我尝试使用 HTML 发送邮件,我使用的所有 CSS 都有效,但我为标题设置了笔划,在浏览器中运行良好,但是当我发送邮件时,我在电子邮件中收到黑色标题。

文本阴影也不会显示!显示字体笔划的任何替代方法?

h3{
   font-family: sans-serif;
   margin: 40px 0;
   font-size: 40px;
   color:#fff;
   
   text-shadow: 0px 0px 1px #9f5a57, 0px 0px 1px #9f5a57;
   
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: #9f5a57;
}
<h3>LAUNCHING HAIR</h3>

我知道图像是最好的选择,即使不支持 CSS。但我的问题是标题是动态的,所以我不能把图像放在那里。

我看到了很多解决方案,但没有找到与我的问题相关的任何解决方案。

标签: htmlcsshtml-emailstroke

解决方案


推荐阅读