I would like to create a group of cards of varying height, but I have had trouble displaying them so that it does not have extra space below the shorter ones.
I want it to look like this:
What I do not want is to have the cards stretch to fill the space. I want the card below to slide up to fill the space.
Is this possible with pure CSS? If not, how would I do this with Javascript?
Here's something to work with: http://codepen.io/calebeby/pen/LGaVoL
.row {
@include display(flex);
@include flex-wrap(wrap);
}