CSS3 :last-of-type Selector
Example
Specify a background color for the last <p> element of its parent:
p:last-of-type
{
background: #ff0000;
}
Try it Yourself »
Definition and Usage
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).
Version: | CSS3 |
---|
Browser Support
The numbers in the table specifies the first browser version that fully supports the selector.
Selector | |||||
---|---|---|---|---|---|
:last-of-type | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
CSS Syntax