JSFiddle - React, Tailwind, and code Playground

by Oliver_kh

HTML

<div class="first_class">Блок с КЛАССОМ</div>

<div class="two_class">Второй блок с КЛАССОМ</div>

<div id="first_id">Блок с идентификатором</div>

CSS

.first_class {
    color:red;
}
.two_class {
    color:green;
}
#first_id {
    color:gray;
}