I'm just getting familiarized with Flex box and when i apply flex-grow:1 to a grouping of columns it seems to be making the column height grow equally but not the widths which is my goal.
If i'm understanding this, the default flex-direction is "row"...so in theory shouldn't the widths all be equal.
.flex{display:flex}
.flex div{flex-grow:1}
/*Just for visual separation*/
.flex div:nth-child(odd){background-color:#ccc}
Here is a Codepen of my example http://codepen.io/dougmays/pen/dPWQdp
thanks