JSFiddle - React, Tailwind, and code Playground

by 규연 황

HTML

<table>
  <tr>
    <th>00</th>
    <th>00</th>
  </tr>
  <tr>
    <td>00</td>
    <td>00</td>
  </tr>
</table>

CSS

table {
  max-width: 600px;
  border: 1px solid #000000;
  table-layout: fixed;
  border-collapse: collapse;
}
th, td {
  border: 1px solid #000000;
}