我知道可以使用unicode添加符号;我之前见过它,但不记得怎么做了。我需要将列表项列为此列表http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references中的 raquo 字符。它的unicode点是 U + 00BB(187)。
这是一个简单的小提琴,提供了我的问题情景:http://jsfiddle.net/3wh6997q/
HTML:
<ul>
<li>
<a> Item 1</a>
</li>
<li>
<a> Item 2</a>
</li>
<li>
<a> Item 3</a>
</li>
</ul>
CSS:
ul
{
list-style: none;
}
ul > li > a:before
{
content: ">>"; /* Actually I want the content to be the raquo character */
}
答案 0 :(得分:2)