JSFiddle - React, Tailwind, and code Playground
by doug65536
HTML
<div id="parent">
Parent content
<div id="child">
Child content Child content Child content Child content Child content Child content
Child content Child content Child content
</div>
</div>
CSS
#parent {
position: relative;
background-color: red;
padding: 8px;
}
#child {
margin: 8px;
position: relative;
background-color: blue;
padding: 8px;
}