last-child code example
Example 1: css last child with class
/*This will only work if the last child of someEID has
the class .myclassName
if the last child does not have class name us js*/
#someEID .myClassName:last-child {
background: blue;
}
Example 2: last-child
li:last-child {
background-color: lime;
}