CSS 中的版权符号:伪元素之后
已解决 - 使用 \00a9
而不是 ©
非常不言自明:
body:after {
content: "© me";
/* other formatting */
}
在 HTML 中,© 序列插入版权字符。这可以像我在这里尝试那样在 CSS 伪元素中完成吗?
SOLVED - used \00a9
instead of ©
Pretty self-explanatory:
body:after {
content: "© me";
/* other formatting */
}
In HTML, the ©
sequence inserts a copyright character. Can this be done in CSS Pseudo-Elements like I'm trying to do here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CSS 不使用 HTML 的实体;它使用自己的 unicode 转义序列。
您需要使用
\00a9
作为版权符号。请参阅此处的备忘单,其中显示了您需要的几乎每个实体/unicode 字符串:http://www.evotech.net/blog/2007/04/named-html-entities-in-numeric-order/
CSS doesn't use HTML's entities; it uses its own unicode escape sequences.
You need to use
\00a9
for the copyright symbol.See here for a cheat-sheet table which shows just about every entity/unicode string you'd ever need: http://www.evotech.net/blog/2007/04/named-html-entities-in-numeric-order/