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).


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The :last-of-type selector is supported in all major browsers, except Internet Explorer.