Wondering if it's feasible to design a flexbox layout with wrapping children while aligning them to the top?
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.container .element {
flex: 0 0 auto;
}
This piece of code:
https://i.sstatic.net/IzUd2.png
generates something like the above image, however, my goal is to accomplish the layout in this picture: