select last 2 child css code example
Example 1: css last 3 childs
#something a:nth-last-child(-n+3) {
/*declarations*/
}
Example 2: css selector last child
li:last-child {
background-color: lime;
}
#something a:nth-last-child(-n+3) {
/*declarations*/
}
li:last-child {
background-color: lime;
}