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