CSS 中的版权符号:伪元素之后

发布于 2024-12-09 15:07:14 字数 282 浏览 0 评论 0原文

已解决 - 使用 \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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮华 2024-12-16 15:07:14

CSS 不使用 HTML 的实体;它使用自己的 unicode 转义序列。

您需要使用 \00a9 作为版权符号。

body:after {
  content:"\00a9 me";
}

请参阅此处的备忘单,其中显示了您需要的几乎每个实体/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.

body:after {
  content:"\00a9 me";
}

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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文