JSFiddle - React, Tailwind, and code Playground
by Kim Ara
HTML
<ul>
<li>안녕1</li>
<li class="test">안녕2</li>
<li>안녕3</li>
</ul>
CSS
li {color: red}
li ~ li {color: blue}
.test ~ {color: yellow}
by Kim Ara
<ul>
<li>안녕1</li>
<li class="test">안녕2</li>
<li>안녕3</li>
</ul>
li {color: red}
li ~ li {color: blue}
.test ~ {color: yellow}