<!doctype html><style>
* {
border: 1px solid black;
}
.flexbox {
display: flex;
flex-direction: column;
flex-wrap: wrap;
width: 200px;
}
.flexbox > div {
width: 50px;
height: 50px;
}
</style><div class="flexbox"><div></div><div></div><div></div>