JSFiddle - React, Tailwind, and code Playground

by Salvatore Rotondo

HTML

<div class="container">
  <div class="column">
  
  </div>
  <div class="column">
  
  </div>
</div>

CSS

.container{
  width:900px;
  margin:20px auto;
  text-align:center;
  background-color:#ccc;
}

.column{
  width:50%;
  display:inline-block;
  background-color:#f00;
  height:150px;
}

.column:first-child{
  background-color:#00f;
  height:250px;
}