JSFiddle - React, Tailwind, and code Playground

HTML

<div id="outer">
    <div id="inner">
        test
    </div>
</div>

CSS

#inner {
    background-color: yellow;    
    margin-left: 50px;
    margin-bottom: 50px;
}
#outer {
    background-color: red;
}