JSFiddle - React, Tailwind, and code Playground

by fristyr

HTML

<div id="parent">
    <div id="red">
        <p>Red</p>
    </div>
    <div id="blue">
        <p>Blue</p>
    </div>
</div>

CSS

#parent{ 
    background-color:yellow; 
    width:300px; 
}
#red {
    background-color:red; 
    height:50px; 
    margin-bottom:30px;
}
#blue {
    background-color:blue; 
    height:50px; 
    margin-top:30px;
}