JSFiddle - React, Tailwind, and code Playground
HTML
<div class="styled">
Stylized with class content.
</div>
<div> <!--Non styled-->
Non-stylized content.
</div>
CSS
div {
background: #cecece;
font-weight: 600; /* BOLD */
}
.styled {
background: #fff; /* Note this change! */
color: red;
}