nth-last-child(num) - the reverse (Polish) selector
Ever needed to select the last element, or select by counting backwards from the last element?!
*Ricky Jay voice* I HAVE.
The nth-last-child() selector will do that with style.
/* select the -3rd (third from last) div */
div:nth-last-child(3) {
...
}