JSFiddle - React, Tailwind, and code Playground

by ozzon91

HTML

<h2>Heading</h2>
<p>The selector above matches this paragraph.</p>
<div>
<p>The selector above matches this paragraph.</p>
</div>
<p>The selector above matches this paragraph.</p>

CSS

h2 ~ p {
  color: red;
}