CSS nth-last-of-type(n) Selector :nth-last-of-type(n)

What is CSS :nth-last-of-type(n) Selector?

CSS :nth-last-of-type(n) selector matches nth last number sibling of its type and whose are child elements of an parent element.

Syntax

General syntax of :nth-last-of-type selector,

element:nth-last-of-type(n) {
  property: value;
  property: value;
  ...
}

/* match nth last number sibling of its type child element */
*:nth-last-of-type(n) {
  property: value;
  property: value;
  ...
}

Example

CSS :nth-last-of-type(1) selector select all 2nd sibling of its type child element.

<!DOCTYPE html>
<html>
<head>
  <title>CSS :last-of-type Selector</title>
  <style>
    div :nth-last-of-type(1) {
      color: #FF0000;
    }
  </style>
</head>
<body>
  <div>
    <span>This is first span</span>
    <span>This is second span</span>
    <ul>
      <li>first item</li>
      <li>second item</li>
    </ul>
    <ul>
      <li>first item</li>
      <li>second item</li>
    </ul>
    <p>First Paragraph</p>
    <p>Second Paragraph</p> 
  </div>
</body>
</html>

Run it...   »

Browser Compatibility

  • Google Chrome 2+
  • Mozilla Firefox 3+
  • Internet Explorer 9+
  • Opera 9.5+
  • Safari 4+

Note: Here details of browser compatibility with version number may be this is bug and not supported. But recommended to always use latest Web browser.