已解决 - 使用\00a9
代替©
相当不言自明:
body:after {
content: "© me";
/* other formatting */
}
在HTML中,©
序列插入版权字符。这可以在CSS Pseudo-Elements中完成,就像我想在这里做的那样吗?
答案 0 :(得分:72)
CSS不使用HTML的实体;它使用自己的unicode转义序列。
您需要使用\00a9
作为版权符号。
body:after {
content:"\00a9 me";
}
请在此处查看备忘单表,其中显示了您需要的每个实体/ unicode字符串:http://www.evotech.net/blog/2007/04/named-html-entities-in-numeric-order/