I use flex to align the images loaded from database, but the heights are determined by the highest images each line, how can I remove the gap vertically?
.imgs {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items:center;
align-content:flex-start;
justify-content: space-around;
}