JSFiddle - React, Tailwind, and code Playground

by kuonyuu

HTML

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


<h2>Heading</h2>
<div>
  <p>The selector above does not match this paragraph.</p>
</div>


<p>The selector above does not match this paragraph.</p>
<h2>Heading</h2>
<p>The selector above matches this paragraph.</p>

CSS

h2~p {  color: red}

h2+p {  color: green}