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

时间:2011-10-14 16:10:11

标签: html css pseudo-element

已解决 - 使用\00a9代替©

相当不言自明:

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

在HTML中,©序列插入版权字符。这可以在CSS Pseudo-Elements中完成,就像我想在这里做的那样吗?

1 个答案:

答案 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/