JSFiddle - React, Tailwind, and code Playground
by Mitch Canter
HTML
<h2>This is a H2 Tag</h2>
<p>This P tag immediately follows the H2 Tag</p>
<p>This is another P tag</p>
<h3>This is a H3 Tag</h3>
<p>This tag follows the H3 Tag</p>
<h2>This is another H2 Tag</h2>
<p>This P tag immediately follows the H2 Tag</p>
CSS
h2 + p{
color: red;
}