how to select multiple elements with nth-last-child code example
Example 1: css last 3 childs
#something a:nth-last-child(-n+3) {
/*declarations*/
}
Example 2: nth of type for every 4th after the 1st
:nth-of-type(4n+1)
#something a:nth-last-child(-n+3) {
/*declarations*/
}
:nth-of-type(4n+1)