less first child code example
Example 1: first-child
p:first-child {
background-color: yellow;
}
Example 2: last-child
li:last-child {
background-color: lime;
}
p:first-child {
background-color: yellow;
}
li:last-child {
background-color: lime;
}