How could I, by using flexbox, make all the cards the same size, and on the second row, if there aren't enough cards to fill the row, then align the cards to the left, and leave empty space on the right? At the moment, the cards grow to fill the space, on the second row.
Here is my CSS:
.container {
display: flex;
flex-flow: row wrap;
align-content: flex-start;
}
.card {
flex: 1 1 0;
padding: 0.5rem;
}