JSFiddle - React, Tailwind, and code Playground
by tea4two
HTML
<div class="test">
<div>1</div>
<div>2</div>
<div>3</div>
</div>
CSS
.test {
max-width: 500px;
background-color: yellow;
padding: 10px;
}
.test div {
background-color: blue;
border: 1px solid #fff;
color: #fff;
width: 30%;
float: left;
}