h1:nth-​​child(even)将属性应用于所有h1元素,而不仅仅是

时间:2016-02-18 13:31:45

标签: html css css-selectors

我得到了以下内容:

<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标题的字体大小。知道我做错了吗?

1 个答案:

答案 0 :(得分:2)

这是你要实现的吗? https://fiddle.jshell.net/143fvztm/1/

div.project:nth-child(even) h1 {
    font-size:36px;
}