

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Select every <p> element that is the second <p> element of its parent, counting from the last child
Use the CSS :nth-last-of-type(n) selector to select every <p> element that is the second <p> element of its parent, counting from the last child.
Example
You can try to run the following code to implement the :nth-last-of-type(n) selector:
<!DOCTYPE html> <html> <head> <style> p:nth-last-of-type(2) { background: blue; color: white; } </style> </head> <body> <p>This is demo text 1.</p> <p>This is demo text 2.</p> <p>This is demo text 3.</p> <p>This is demo text 4.</p> <p>This is demo text 5.</p> </body> </html>
- Related Questions & Answers
- Style every <p> element that is the child of its parent, counting from the last child with CSS
- Style every <p> element that is the second child of its parent with CSS
- Style every <p> element that is the last <p> element of its parent with CSS
- Style every <p> element that is the only child of its parent with CSS
- Style every <p> element that is the only <p> element of its parent with CSS
- Style every <p> element that is the first <p> element of its parent with CSS
- Style every <p> element that is the nth <p> element of its parent with CSS
- Style every <p> elements that is the last child of its parent with CSS
- Style every <p> elements that is the first child of its parent with CSS
- Style every <p> element that has no children with CSS
- Selects every <ul> element that are preceded by a <p> element with CSS
- Select parent element of known element in Selenium.
- Selects all <p> elements where the parent is a <div> element with CSS
- Find last element after deleting every second element in array of n integers in C++
- Style every element that is not the specified element with CSS
Advertisements