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;
    overflow: hidden;
}

.child{
    margin-top:50px;
}