JSFiddle - React, Tailwind, and code Playground

by Kalu Singh Rao

HTML

<div class="container">
    <div class="left"></div>
    <div class="right"></div>
</div>

CSS

.container {
    display:block;
    border:1px solid #000;
  }
.left {
    display:block;
    width:100px;
    height:100px;
    background-color:green;
}
.right {
    display:block;
    width:100px;
    height:100px;
    background-color:Blue;
}