JSFiddle - React, Tailwind, and code Playground
by mpsingh2003
HTML
<div class="outer">
<div class="inner">Inner</div>
</div>
CSS
.outer {
width:200px;
height:300px;
background:red;
}
.inner {
width:100px;
height:100px;
background:yellow;
padding: 20% 0;
}