JSFiddle - React, Tailwind, and code Playground

by Tilwin Joy

HTML

<div id='container'>
    <div><div>
</div>

CSS

*{
    margin:0;
    padding:0;
}

#container{
    position:absolute;
    top:50px;
    width:100%;
    bottom:50px;
    background:white;
    text-align:center;
}
#container div{
    display:inline-block;
    min-width:200px;
    height:100%;
    background:dodgerblue;
}