Если вы не возражаете, добавьте третий пустой div.Вы можете центрировать второй div, установив justify-content
в space-between
.
Подробности, как показано ниже: HTML
<div class="container">
<div class="first">
first
</div>
<div class="second">
second
</div>
<div class="third">
</div>
</div>
CSS
.first, .second, .third {
height: 50px;
width: 100%;
}
.container {
background-color: silver;
height: 300px;
display: flex;
flex-direction: column;
flex-wrap: wrap;
justify-content: space-between;
}