 Online: 22665
 Online: 22665
                
            By using first-of-typeselector we can match the every first child of its parent element.
<style> p:first-of-type { color:blue; background-color:orange; font-family:20px; } </style> <body> <strong>This is Strong Statement</strong> <p>This is 1st paragraph.</p> <p>This is 2nd paragraph.</p> <b>This is Bold.</b> <div> <p>This is the first pargarph in div.</p> <p>This is the second paragraph in div.</p> </div> </body>
In the above code snippet we have given style to the <p> element, so that the style applies to the first child of every <p> element.
OUTPUT