nth-last-child Selector
nth-last-child Selector example
HTML
<ul>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
<li>Item</li>
</ul>
CSS
ul li:nth-last-child(2n+2){
color:green;
}