JSFiddle - React, Tailwind, and code Playground

by Sam Fereday

HTML

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

CSS

.container {
 display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  
  -webkit-flex-flow: row wrap;
  justify-content: space-around;
}

.container div {
  width: 100%;
  border: 1px solid red;
}