我有这个CSS选择器:
h3 {
font-size: 1rem;
}
有什么方法可以让它改变标题:
Example
到
- Example
答案 0 :(得分:8)
您可以使用pseudo element :before
在其之前添加内容:
h3 {
font-size: 1rem;
}
h3:before {
content: '- ';
}

<h3>Example</h3>
&#13;
答案 1 :(得分:1)
h3::before {
content: "- ";
display: inline-block;
font-size: 13px;
}
这样的事情就足够了
答案 2 :(得分:1)
答案 3 :(得分:1)
你可以使用:在伪元素之前
h3:before
{
content:"- ";
}
&#13;
<h3>Example</h3>
&#13;