JSFiddle - React, Tailwind, and code Playground

by petroveg

HTML

<div class="wide">
	<div class="item"></div>
	<div class="item"></div>
	<div class="item"></div>
</div>

CSS

.wide{
	width:600px;
	text-align:justify;
	text-justify:newspaper;/*для IE*/
	font-size:0;
	background:#ffc;
}
.wide:after{
	content:"";
	display:inline-block;
	width:100%;
}
.item{
	display:inline-block;
	width:150px;
	height:200px;
	background:#69c;
	text-align:left;
	font-size:1rem;
}