JSFiddle - React, Tailwind, and code Playground

by vi161

HTML

<div class="d">
  <table class="s">
    <td class="f"></td>
    <td class="f"></td>
    <td class="f"></td>
   
  </table>
</div>

CSS

.d{
  width:400px;
  height:400px;
  border:1px solid black;
}
.s {
  display: table;
  border:1px solid red;
  margin: 0 auto;
}
.f{
  height: 50px;
  width: 100px;
  border: 1px solid blue;
  display: inline-table;
  
}