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