CSS选择除最后一个之外的段落和数字

时间:2014-09-06 19:24:45

标签: html css css-selectors

如何使用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>

0 个答案:

没有答案