JSFiddle - React, Tailwind, and code Playground
by flyingL123
HTML
<div class="parent">
<div class="child">
Child content
</div>
</div>
CSS
.parent{
width:300px;
background-color:#666;
color:white;
border:1px solid black;
}
.child{
margin-top:50px;
}