看下面的代码,我需要在第二个'content-block'中更改H2标签的字体大小,我不能直接修改Div标签或h2标签,我只能修改h2标签下面的内容。
<div class="content-block">
<h2>Title here</h2>
<p>this is some text.</p>
</div>
<div class="content-block">
<h2>Modify This title only</h2>
<p>this is some more text.</p>
<style>## I can add CSS here ##</style>
</div>
编辑:我不能确定有多少“内容块”div 在我要修改的那个上面,它从一页到另一页。(一个购物车)
怎么可能?
谢谢。