JSFiddle - React, Tailwind, and code Playground

by Udhay

HTML

<input type="text" value="hai" />
<div class="innerDiv">
  <table>
    <tr>
      <td>Hello Table</td>
    </tr>
  </table>
</div>

CSS

.innerDiv { border: 1px solid #ff6600; }
.innerDiv table::before { 
   content: "";
   display: block;
   width: 100px;
   height: 100px;
 }