 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
Role of CSS :first-of-type Selector
Use the CSS :first-of-type selector to style every <p> element that is the first <p> element of its parent with CSS.
Example
You can try to run the following code to implement the :first-of-type selector
<!DOCTYPE html> <html>    <head>       <style>          p:first-of-type {             background: orange;          }       </style>    </head>    <body>       <p>This is demo text1.</p>       <p>This is demo text2.</p>    </body> </html>Advertisements
 