how to get last nth child code example
Example 1: last second css
:nth-last-child(2)
Example 2: css last 3 childs
#something a:nth-last-child(-n+3) {
/*declarations*/
}
:nth-last-child(2)
#something a:nth-last-child(-n+3) {
/*declarations*/
}