So I have div A and div B.
I need div A to scale to the exact same height as div B
The two divs sit alongside each other and I need the height of Div A to be the same as B
Here is what I have tried: CSS
.container {
  display: flex;
  flex-direction: column;
  // div a and div b
  > div {
    flex: 1;
  }
}
HTML
<div class="container">
  <div class="a">text for a</div>
  <div class="b">text for b</div>
</div>