Styling the first paragraph
by Dominik Wilk
HTML
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/CSS/:first-of-type -->
<h2>Heading</h2>
<p class="x">Paragraph 1</p>
<p class="x">Paragraph 1</p>
<p>Paragraph 2</p>
CSS
.x:first-of-type {
color: red;
font-style: italic;
}