为什么 last-child 不针对这个小提琴中的最后一篇文章标签?
<div class="parent">
<article class="example">111</article>
<article class="example">111</article>
<article class="example">111</article>
<article class="example">111</article>
<section>content</section>
</div>
CSS
.parent .example{ background-color: red;}
.parent .example:last-child{background-color: yellow;}