JSFiddle - React, Tailwind, and code Playground

by CSS_Apprentice

HTML

<table>
  <tbody>
    <tr>
      <td><input type="checkbox"></td>
      <td><input type="checkbox"></td>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
      <td><input type="checkbox"></td>
      <td><input type="checkbox"></td>
    </tr>
    <tr>
      <td><input type="checkbox"></td>
      <td><input type="checkbox"></td>
      <td><input type="checkbox"></td>
    </tr>
  </tbody>
</table>

CSS

input[type="checkbox"] {
    height: 100%;
    width: 100%;
    margin: 25px;
}