Pattern:
:last-child
Definition:
The :last-child pseudo-class matches the last child of some other element. Thus, ELEM:last-child will select any ELEM that is the last child of
another element.
Examples:
Style every <a> element that is the last child of its parent
a:last-child { text-decoration: underline; }
Please login to continue.