CSS :nth-last-child() Selector

You are Here:

CSS :nth-last-child() Selector

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-last-child(3){ color: red; } </style> </head> <body> <h1>CSS :nth-last-child() Selector</h1> <p>This is 3rd child (p) of its parent (body) from bottom.</p> <p>This is 2nd child (p) of its parent (body) from bottom.</p> <p>This is 1st child (p) of its parent (body) from bottom.</p> </body> </html>

Syntax

Using CSS

:nth-last-child(number) { color: red; }

More Examples

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-last-child(odd){ color: red; } p:nth-last-child(even){ color: blue; } </style> </head> <body> <h1>CSS :nth-last-child() Selector</h1> <p>This is 4th child (p) of its parent (body) from bottom.</p> <p>This is 3rd child (p) of its parent (body) from bottom.</p> <p>This is 2nd child (p) of its parent (body) from bottom.</p> <p>This is 1st child (p) of its parent (body) from bottom.</p> </body> </html>

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-last-child(3n+0){ color: red; } </style> </head> <body> <h1>CSS :nth-last-child() Selector</h1> <p>This is 6th child (p) of its parent (body) from bottom.</p> <p>This is 5th child (p) of its parent (body) from bottom.</p> <p>This is 4th child (p) of its parent (body) from bottom.</p> <p>This is 3rd child (p) of its parent (body) from bottom.</p> <p>This is 2nd child (p) of its parent (body) from bottom.</p> <p>This is 1st child (p) of its parent (body) from bottom.</p> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author