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