JSFiddle - React, Tailwind, and code Playground
by Benjamín Ariel Nava Martínez
HTML
<div class="parent">
<div class="child">
Child content
</div>
</div>
CSS
.parent{
width:300px;
background-color:#666;
color:white;
padding-top: 50px;
}
.child{
/* margin-top:50px; */
}