JSFiddle - React, Tailwind, and code Playground

by Softlink

HTML

<section>
    <div></div>
    <div></div>
    <div></div>
</section>

CSS

section{
    display: -webkit-box;
	display: -moz-box;
	-webkit-box-pack:justify;
    -moz-box-pack:justify;
    -ms-flex-pack:justify;
    -webkit-justify-content:space-between;
    justify-content:space-between;
}

div{
    width: 100px;
    height: 100px;
    background: #222;
}