nth child last css code example
Example 1: css last child
li:last-child {
background-color: lime;
}
Example 2: remove border from last child css
.menu li:last-child {
border: none;
}
li:last-child {
background-color: lime;
}
.menu li:last-child {
border: none;
}