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 伪类中,以便在链接悬停后添加一个箭头。我已经在很久以前在默认安装附带的库存 WordPress 主题中看到了这一点。我觉得我必须错过一些简单的东西。
a:hover:after{content: "»"}
预先感谢!
您需要使用十六进制值\00BB。
\00BB
http://jsfiddle.net/durilai/AGDbH/
你正在寻找,我认为:
a:hover:after { content: "\00bb"; }
JS 小提琴演示
参考链接:http ://css-tricks.com/snippets/html/glyphs/