Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将“黑色右指向指针”html 实体添加到我的 css:after内容中,但无济于事。
:after
我知道您需要使用 unicode 值,但我找不到适用于此的值。这是 unicode 编号U+25BA,这是 HTML 代码►
U+25BA
►
您应该使用反斜杠和十六进制代码:
i:after { content: "\25ba"; }
显然,这个字符必须出现在所使用的字体中。演示:http: //jsfiddle.net/c29VS/1/