JSFiddle - React, Tailwind, and code Playground
by jonahe
HTML
<section>
<div>
hello
</div>
<div>
hello
</div>
<div>
hello
</div>
<div>
hello
</div>
<div>
hello
</div>
<div>
hello
</div>
</section>
CSS
section {
display: grid;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: 150px;
}