JSFiddle - React, Tailwind, and code Playground

HTML

<div class="test-node">
    <em>123</em>
    <strong>Test</strong>
</div>

CSS

div           { color: blue }
div:hover     { color: green; }
.test-node    { font-weight: bold; }

div > strong  { color: red; }