JSFiddle - React, Tailwind, and code Playground

by jakie8

HTML

<div id="container">
    <div class="cell"></div>
    <div class="cell"></div>
</div>

CSS

#container{
    width:400px;
    margin:0 auto;
    border:1px solid blue;
    }
.cell{
    width:196px;
    height:200px;
    border:1px solid red;
    display:inline-block;
}