JSFiddle - React, Tailwind, and code Playground

by Szymon Lisowiec

HTML

<div class="container">
  <div class="col example">
    
  </div>
  <div class="col example">
    
  </div>
</div>

CSS

.container {
  font-size: 0;
}

.col {
  display: inline-block;
  vertical-align: top;
}

.col.example {
  width: 250px;
  height: 100px;
  background: #f00;
}

.col.example:last-child { background: #0f0; }