ExampleSpecify a background color for the last p element of its parent:
Try it yourself » |
The :last-of-type selector matches every element that is the last child, of a particular type, of its parent.
Tip: This is the same as :nth-last-of-type(1).
The :last-of-type selector is supported in all major browsers, except Internet Explorer.