标签: html css selector
如果它是奇数,是否可以选择本节中的最后一篇文章?
<section> <article></article> <article></article> <article></article> </section>
我尝试使用:nth-last-of-type选择器
答案 0 :(得分:2)
您可以简单地使用CSS,例如:
article:last-child:nth-child(odd){ color:red; }