JSFiddle - React, Tailwind, and code Playground

by Afzaal Ahmad Zeeshan

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;
}