Answer the question
In order to leave comments, you need to log in
How to move flexbox items in groups?
Here I have this code:
<div class="container">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</div>
.container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
}
.item {
border: 1px solid white;
height: 300px;
width: 200px;
margin-bottom: 20px;
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question