nth child last element css code example
Example 1: css last 3 childs
#something a:nth-last-child(-n+3) {
/*declarations*/
}
Example 2: remove border from last child css
.menu li:last-child {
border: none;
}
#something a:nth-last-child(-n+3) {
/*declarations*/
}
.menu li:last-child {
border: none;
}