

- 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
Style every <p> elements that is the first child of its parent with CSS
<p>To style every <p> element that is the first child of its parent, use the CSS :first-child selector.</p><h2>Example</h2><p>You can try to run the following code to implement the :first-child selector −</p><p><a class="demo" href="http://tpcg.io/TXg9X4" rel="nofollow noopener noreferrer" target="_blank">Live Demo</a></p><pre class="prettyprint notranslate"><!DOCTYPE html> <html> <head> <style> p:first-child { background-color: orange; } </style> </head> <body> <h1>Heading</h1> <p>This is demo text.</p> <div> <p>This is demo text, with the first child of its parent div.</p> <p>This is demo text, but not the first child.</p> </div> </body> </html></pre>
- Related Questions & Answers
- Style every <p> elements that is the last child 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 second child of its parent with CSS
- 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 first <p> element 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 nth <p> element of its parent with CSS
- Style every <p> element that is the only <p> element of its parent with CSS
- Select every <p> element that is the second <p> element of its parent, counting from the last child
- Style every <p> element that has no children with CSS
- Style every element that is not the specified element with CSS
- Apply style to the parent if it has a child with CSS and HTML
- Style every <p> element with a lang attribute value with CSS
- Selects all <p> elements where the parent is a <div> element with CSS
- Selecting Child Elements with CSS
Advertisements