JSFiddle - React, Tailwind, and code Playground
by Prateek Jain
HTML
<div class="parent">
<div class="child">
</div>
</div>
CSS
.child {
height: 200px;
width: 200px;
background-color: pink;
}
.parent {
height: auto;
display: inline-block;
padding: 10px;
background-color: black;
}