在片段上,第 3 个h2
应该不受 css 的影响,那为什么会这样呢?
.a > div { color: blue; text-align: center; }
<div class="a">
<h2>Title</h2>
<div>
<h2>this shoud be center and blue</h2>
<div>
<h2>this should Not be center or blue</h2>
</div>
</div>
</div>