JSFiddle - React, Tailwind, and code Playground

by Nikhil krishnan

HTML

<section>
    <div>Item 1</div>
    <div>Item 2</div>
    <div>Item 3</div>
    <div>Item 1</div>
    <div>Item 2</div>
    <div>Item 3</div>
  </section>

CSS

section {
    border: 1px solid #eedc7d;
    display: -moz-box;
    display: -webkit-box;
    display:box;
    width: 100%;
}
div{
   -moz-box-flex: 1;
    -webkit-box-flex:1;
    box-flex:1;
    background-color: #3a87ad;
    height: 50px;
    margin:2px;
}