Using CSS and flexbox, I don\'t understand how to give the same height to divs \"a\" and \"b\". I need b to become taller so as to match a\'s height. In other words, the gre
The trick is this part
.xyz { width: 70%; box-shadow: 0 0 30px; text-align:center; -webkit-flex: 9 0 0; flex: 9 0 0; }
http://codepen.io/damianocel/pen/XmxmQE
Now these divs will have the same height, no matter the overall pages height.
Is this what you have looked for?