p:before { content:"\00a1"; }


但这是倒置的感叹号。我只需要普通的感叹号。大家有什么想法吗?

最佳答案

如果需要标准字符,则无需Unicode代码:

p:before { content:"!"; }

07-24 19:03