apply css on last child in parent div code example
Example 1: css last child
li:last-child {
background-color: lime;
}
Example 2: apply css on last child in parent div
.parent > *:last-child {
background-color: red;
}
li:last-child {
background-color: lime;
}
.parent > *:last-child {
background-color: red;
}