gpt4 book ai didi

html - CSS 中的版权符号 :after Pseudo-Element

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

已解决 - 使用 \00a9 而不是 ©

非常不言自明:

body:after {
content: "© me";
/* other formatting */
}

在 HTML 中,© 序列插入版权字符。这可以像我在这里尝试做的那样在 CSS 伪元素中完成吗?

最佳答案

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

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

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

请参阅此处的备忘单表,其中几乎显示了您需要的每个实体/unicode 字符串:http://www.evotech.net/blog/2007/04/named-html-entities-in-numeric-order/

关于html - CSS 中的版权符号 :after Pseudo-Element,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7770444/

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