如何使用 CSS content属性添加 HTML 实体?
content
使用这样的东西只是打印 到屏幕而不是不间断的空间:
.breadcrumbs a:before { content: ' '; }
您必须使用转义的 unicode :
喜欢
.breadcrumbs a:before { content: '\0000a0'; }
更多信息:http ://www.evotech.net/blog/2007/04/named-html-entities-in-numeric- order/