JSFiddle - React, Tailwind, and code Playground
by jonathanmh
HTML
<p>tekst tekst tekst</p>
<p id="hund">tekst tekst tekst</p>
<p class="kat">tekst tekst tekst <span>noget andet tekst</span></p>
CSS
#hund {
color: green;
}
.kat {
font-weight: bold;
}
.kat span {
color: red;
}