JSFiddle - React, Tailwind, and code Playground
HTML
<div class="container">
<h1>heading</h1>
<p>para 1</p>
<p>para 2</p>
</div>
CSS
p:first-of-type {
color: red;
}
p {
color: blue;
}
.container {
color: yellow;
}
p:first-child {
color: green
}