JSFiddle - React, Tailwind, and code Playground
by lollero
HTML
<div id="parent">
<div id="child">
sadfasdf
</div>
</div>
CSS
#parent {
width: 200px;
height: 200px;
border: 1px solid #999;
position: relative;
}
#child {
top: 0px;
left: 0px;
right: 0px;
position: absolute;
padding: 5px;
background: red;
}