JSFiddle - React, Tailwind, and code Playground
by tanya_22
HTML
<section class="list">
<div class="list-item">
<img src="" alt="" width="300" height="400">
</div>
<img src="" alt="" width="300" height="400">
<img src="" alt="" width="300" height="400">
</section>
SCSS
.list{
display: flex;
flex-wrap: wrap;
}
.list-item{
display: flex;
width: 30%;
height: 40px;
margin-right: 3%;
background-color: red;
}