JSFiddle - React, Tailwind, and code Playground

by web tiki

HTML

<div id="wrapper">
    <div id="first"></div>
</div>

CSS

#wrapper {
    height:100%;
    width:300px;
    background-color:#9ACD32;
}
#first {
    background-color:#F5DEB3;
    height: 200px;
}


/* Following just for demo */

html, body{
    height:100%;
    margin: 0;
    padding: 0;
}