I've got Flex figured out when using divs within divs, but is it possible to do the same thing for divs within those?
In this example, I'm trying to build a basic ecommerce product grid. https://codepen.io/BevansDesign/pen/rJrNyQ
Bare minimum version:
<div id="container">
<div class="prod-box">
<div class="title">This is a product title</div>
</div>
<div class="prod-box">
<div class="title">This is a product title</div>
</div>
</div>
Is it possible to have div.title
be the same height in each row? The best I've been able to do is this, but that only stretches the third-tier divs within the second-tier.
Thanks!