如何使用css选择文章元素中的所有元素,如段落和数字,并为最后一个元素指定不同的样式?
<article>
<p> paragraph </p>
<p> paragraph </p>
<p> paragraph </p>
<figure><img src=""></figure>
<p> paragraph </p><!-- This will have a background red -->
</article>
在另一个地方相同,但这次最后一个元素是一个数字元素:
<article>
<p> paragraph </p>
<p> paragraph </p>
<p> paragraph </p>
<figure><img src=""></figure><!-- This is the last element and should have another style, like a different background color -->
</article>