li:之前{ 内容: """";如何将此特殊字符编码为电子邮件信纸中的公告?
自豪地为我的列表样式项目符号着色之后没有任何图像 url 或 span 标签,通过:
ul{ list-style: none; padding:0; margin:0; }
li{ padding-left: 1em; text-indent: -1em; }
li:before { content: "■"; padding-right:7px; }
虽然这些样式表可以完美地工作到圆形边框和其他 css3 内容,并且尽管电子邮件的收件人(例如,Eudora OSE 1)正确呈现所有 css 样式,就像在浏览器中一样,存在一个问题:像 •
或 ■
这样的项目符号被转换为 &#adabacadabra;
最终像这样出现在电子邮件中:
我如何从此处继续?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
以前从未遇到过这个问题(在电子邮件上没有太多作用,我像瘟疫一样避免它)但您可以尝试使用 unicode 代码点声明项目符号(CSS 的表示法与 HTML 的表示法不同):
content: '\2022'
。 (你需要使用十六进制数字,而不是十进制的 8226)然后,如果你使用一些东西来拾取这些字符并将它们 HTML 编码为实体(这不适用于 CSS 字符串),我想它会忽略那。
Never faced this problem before (not worked much on email, I avoid it like the plague) but you could try declaring the bullet with the unicode code point (different notation for CSS than for HTML):
content: '\2022'
. (you need to use the hex number, not the 8226 decimal one)Then, in case you use something that picks up those characters and HTML-encodes them into entities (which won't work for CSS strings), I guess it will ignore that.
你可以试试这个:
它对我有用,感谢这个 帖子。
You ca try this:
It worked for me, thanks to this post.
您面临双重编码问题。
■
和•
彼此绝对等效。两者均引用Unicode 字符“BULLET”(U+2022) 并且可以并排存在于 HTML 源代码中。但是,如果该源代码在某个时刻再次进行 HTML 编码,它将包含
■
和•
。前者保持不变,后者将显示为“•”在屏幕上。在这种情况下这是正确的行为。您需要找到多余的第二个 HTML 编码发生的点并将其删除。
You are facing a double-encoding issue.
■
and•
are absolutely equivalent to each other. Both refer to the Unicode character 'BULLET' (U+2022) and can exist side-by-side in HTML source code.However, if that source-code is HTML-encoded again at some point, it will contain
■
and•
. The former is rendered unchanged, the latter will come out as "•" on the screen.This is correct behavior under these circumstances. You need to find the point where the superfluous second HTML-encoding occurs and get rid of it.
Lea 的转换器不再可用。我刚刚使用了这个转换器
步骤:
Dec 代码点
Unicode U+hex notation
(例如 U+2022)内容:'\2022'
ps。我与该网站没有任何联系。
Lea's converter is no longer available. I just used this converter
Steps:
Dec code points
Unicode U+hex notation
(eg U+2022)content: '\2022'
ps. I have no connection with the web site.
您不应在电子邮件中使用 LI。它们在电子邮件客户端中是不可预测的。相反,您必须像这样对每个项目符号点进行编码:
这将确保您的项目符号在每个电子邮件客户端中都有效。
You shouldn't use LIs in email. They are unpredictable across email clients. Instead you have to code each bullet point like this:
This will ensure that your bullets work in every email client.
这个网站可能会有帮助,
你可以在这里复制它并直接放在 css html 上
This website could be helpful,
here you can copy it and put directly on css html