JSFiddle - React, Tailwind, and code Playground
by naykris
HTML
<div class="content-article" >
<article>
Блок1
</article>
<article>
Блок2
</article>
<article>
Блок3
</article>
<article>
Блок4
</article>
</div>
CSS
.content-article{
display: flex;
flex-wrap: wrap;
}
article{
width: 145px;
margin-right: 8px;
margin-left: 8px;
margin-top: 22px;
background-color: #ffffff;
}