CSS :nth-last-of-type() Pseudo-class
Example
Specify a background color for every <p> element that is the second <p> element of its parent, counting from the end. Also, specify a background color for every <li> element that is the third <li> element of its parent, counting from the end:
p:nth-last-of-type(2)
{
background: red;
}
li:nth-last-of-type(3) {
background: yellow;
}
Try it Yourself »
More "Try it Yourself" examples below.
Definition and Usage
The :nth-last-of-type(n)
pseudo-class
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/index, a keyword (odd or even), or a formula (like an + b).
Tip: Look at the :nth-last-child() pseudo-class to select the element that is the nth child, regardless of type, of its parent, counting from the last child.
Version: | CSS3 |
---|
Browser Support
The numbers in the table specifies the first browser version that fully supports the pseudo-class.
Pseudo-class | |||||
---|---|---|---|---|---|
:nth-last-of-type() | 4.0 | 9.0 | 3.5 | 3.2 | 9.6 |
CSS Syntax
More Examples
Example
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: red;
}
p:nth-last-of-type(even)
{
background: blue;
}
Try it Yourself »
Example
Using a formula (an + b). Description: a represents an integer step size, n is all non negative integers, starting from 0, and b is an integer offset value.
Here, we specify a background color for all <p> and <li> elements whose index is a multiple of 3, counting from the end:
p:nth-last-of-type(3n)
{
background: red;
}
li:nth-last-of-type(3n) {
background: yellow;
}
Try it Yourself »