JSFiddle - React, Tailwind, and code Playground

by evgeniel

HTML

<style>
    table {
      border-collapse: collapse;
    }
 
    td,
    th {
      border: 1px solid black;
      padding: 3px;
      text-align: center;
    }
 
    th {
      font-weight: bold;
      background-color: #E6E6E6;
    }
  </style>
 
<body>
 
  <div id="calendar"></div>
 
</body>

CSS

table {
      border-collapse: collapse;
    }
 
    td,
    th {
      border: 1px solid black;
      padding: 3px;
      text-align: center;
    }
 
    th {
      font-weight: bold;
      background-color: #E6E6E6;
    }