Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> p:first-of-type { font-size: 22px; color: #777777; } </style> </head> <body> <h2>:first-of-type selector example</h2> <article> <h2>This is a title.</h2> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. .</p> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. .</p> </article> </body> </html>