JSFiddle - React, Tailwind, and code Playground

by David Kyle

HTML

<div class="blue-text bold">
  <h1>
    Heading
  </h1>
  <p class="red-text">
    Warning: please enter a username.
  </p>
</div>

<p class="red-text">
Test
</p>

CSS

.red-text {
  color: #ff0000;
}

.blue-text, div p.red-text {
  color: #0000ff;
}

.bold {
    font-weight: bold;
}