本文介绍了在元素后面使用:after添加一个空格(“”)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在某些内容之后添加一个空格,但 content:;
似乎不起作用。
I want to add a blank space after some content, however the content: " ";
doesn't seem to work.
这是我的代码:
h2:after {
content: " ";
}
...无效,但这样做:
... which doesn't work, however this does:
h2:after {
content: "-";
}
我做错了什么?
推荐答案
结果,它需要通过转义的unicode指定。 是相关的,并包含答案。
Turns out it needs to be specified via escaped unicode. This question is related and contains the answer.
解决方案:
h2:after {
content: "\00a0";
}
这篇关于在元素后面使用:after添加一个空格(“”)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!