You can do this with CSS Grid layout using grid-template-columns: repeat(auto-fit, 200px)
andjustify-content: space-between
.
.browser {
width: 700px;
display: grid;
grid-template-columns: repeat(auto-fit, 200px);
justify-content: space-between;
padding-bottom: 100px;
border: 1px solid red;
}
.case {
background-color: #ccc;
height: 100px;
border: 1px solid blue;
margin-bottom: 10px;
}
Project
Project
Project
Project
Project