我得到了以下内容:
<section id="work">
<div class="project">
<h1>something</h1>
<h2>something</h2>
</div>
<div class="project">
<h1>something</h1>
<h2>something</h2>
</div>
<div class="project">
<h1>something</h1>
<h2>something</h2>
</div>
<div class="project">
<h1>something</h1>
<h2>something</h2>
</div>
</section>
我想要做的是更改每秒h1标头的字体大小属性。我认为部分#work .project h1:nth-child(偶数)可以工作,但这会改变所有h1标题的字体大小。知道我做错了吗?
答案 0 :(得分:2)
这是你要实现的吗? https://fiddle.jshell.net/143fvztm/1/
div.project:nth-child(even) h1 {
font-size:36px;
}