how to target last child in 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;
}
Example 3: apply css on last child in parent div
.parent > *:last-child {
background-color: red;
}
Example 4: css selector last child
li:last-child {
background-color: lime;
}