我可以使用css伪选择器:before和:after将一些文本括在括号中吗?
即
Text
变为:
(Text)
谢谢
解决方法
是的你可以
<span>text</span> span:before { content: '('; } span:after { content: ')'; }