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;
}

.child{
    margin-top:50px;
}