我有这个:
<div class="block3">
<div class="surround">
<div class="s_title">
<h3>Title</h3>
</div>
<div class="block_content">
<div class="content"> </div>
</div>
</div>
</div>
在我的示例中,我不能直接在HTML中添加内容(默认情况下在PHP中呈现的块),所以我需要在CSS中添加。
困难的部分是我只需要在block3
元素中添加文本,之后<h3>
(.s_title:after
会影响 all s_title
,所以它对我不起作用。)
有没有办法做到这一点?