flex-direction: column
<div id="parent">
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</div>
#parent {
flex-direction: column;
display: flex;
flex-wrap: wrap;
height: 200px;
overflow: hidden;
}
#parent > div {
border: 1px solid #696989;
width: 100px;
height: 50px;
}