JSFiddle - React, Tailwind, and code Playground

by Jason Aller

HTML

<table>
  <thead>
    <tr>
      <td>Example for Wes</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
      <td>2</td>
    </tr>
  </tbody>
</table>

<table class="hard">
  <thead>
    <tr>
      <td>Title 2</td>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>1</td>
      <td>2</td>
    </tr>
  </tbody>
</table>

CSS

.hard tbody td {
  font-weight: bold;
  color: blue;
}