JSFiddle - React, Tailwind, and code Playground
HTML
<p>
<strong>This should be a heading</strong>
</p>
<p>
This is a sentence with <strong>strong text</strong> in it.
</p>
CSS
p:first-child strong
{
color: red;
}
<p>
<strong>This should be a heading</strong>
</p>
<p>
This is a sentence with <strong>strong text</strong> in it.
</p>
p:first-child strong
{
color: red;
}