I have rows of cards. Each card is
display: flex;
flex-direction: column;
A row is also flex layout as so:
display: flex;
align-items: stretch;
flex-wrap: wrap;
justify-content: space-between;
so that all cards are of equal height.
The problem is how to align content across different cards horizontally. It happens naturally if the content is all the same height (effectively) however if content is of varying height, things don't line up.
Is there a way (without setting heights) to align content horizontally?
This plunker demonstrates the problem. Open in full screen to see the row of cards unwrapped. The "summary" headings would ideally all be aligned horizontally. http://plnkr.co/edit/zv6qBu0DfpK1Zq7Oe58M?p=preview
Thanks