Search w3schools.com:

SHARE THIS PAGE

CSS Reference

CSS Reference CSS Selectors CSS Reference Aural CSS Web Safe Fonts CSS Units CSS Colors CSS Color Values CSS Color Names CSS Color HEX CSS3 Browser Support

CSS Properties

CSS3 :nth-last-of-type() Selector

Complete CSS Selector Reference Complete CSS Selector Reference

Example

Specify a background color for every p element that is the second p element of its parent, counting from the last child:

p:nth-last-of-type(2)
{
background:#ff0000;
}

Try it yourself »

Definition and Usage

The :nth-last-of-type(n) selector matches every element that is the nth child, of a particular type, of its parent, counting from the last child.

n can be a number, a keyword, or a formula.

Tip: Look at the :nth-last-child() selector to select the element that is the nth child, regardless of type, of its parent, counting from the last child.


Browser Support

Internet Explorer Firefox Opera Google Chrome Safari

The :nth-last-of-type() selector is supported in all major browsers, except IE8 and earlier.


Examples

Try it Yourself - Examples


Example 1

Odd and even are keywords that can be used to match child elements whose index is odd or even (the index of the first child is 1).

Here, we specify two different background colors for odd and even p elements:

p:nth-last-of-type(odd)
{
background:#ff0000;
}
p:nth-last-of-type(even)
{
background:#0000ff;
}

Try it yourself »

Example 2

Using a formula (an + b). Description: a represents a cycle size, n is a counter (starts at 0), and b is an offset value.

Here, we specify a background color for all p elements whose index is a multiple of 3:

p:nth-last-of-type(3n+0)
{
background:#ff0000;
}

Try it yourself »


Complete CSS Selector Reference Complete CSS Selector Reference


Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]