JSFiddle - React, Tailwind, and code Playground

by vjeux

HTML

<div style="width: 200px; height: 200px; position: relative; border: 1px solid red;">
   <div style="position: absolute; top: 0; bottom: 0; left: 0; right: 0; border: 1px solid green;">
      tblr
   </div>
</div>

<br />

<div style="width: 200px; height: 200px; position: relative; border: 1px solid red;">
   <div style="position: absolute; top: 0; bottom: 0; left: 0; right: 0; border: 1px solid green; padding: 10px;">
      tblr with padding
   </div>
</div>

<br />

<div style="width: 200px; height: 200px; position: relative; border: 1px solid red;">
   <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid green;">
     width/height
   </div>
</div>

<br />

<div style="width: 200px; height: 200px; position: relative; border: 1px solid red;">
   <div style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid green; padding: 10px;">
     width/height with padding
   </div>
</div>