- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Style every element that is the nth element of its parent with CSS
Use the CSS :nth-of-type(n) selector to style every <p> element that is the nth <p> element of its parent. You can try to run the following code to implement the :nth-of-type(n) selector
Example
<!DOCTYPE html> <html> <head> <style> p:nth-of-type(2) { background: yellow; } </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> </body> </html>
- Related Articles
- Style every element that is the first element of its parent with CSS
- Style every element that is the last element of its parent with CSS
- Style every element that is the only element of its parent with CSS
- Style every element that is the only child of its parent with CSS
- Style every element that is the second child of its parent with CSS
- Style every element that is the child of its parent, counting from the last child with CSS
- Style every element that is not the specified element with CSS
- Style every elements that is the last child of its parent with CSS
- Style every elements that is the first child of its parent with CSS
- Style every element that has no children with CSS
- Style every checked element with CSS
- Style every disabled element with CSS
- Style every enabled element with CSS
- Select every element that is the second element of its parent, counting from the last child
- Style every element with a lang attribute value with CSS

Advertisements