Just started using Bootstrap 4 after being familiar with Foundation for years.
In Foundation, equalizer was a tool to ensure divs had the same height, which would be applied to all divs within a container. I understand that Bootstrap uses Flex, but I'm struggling to figure out how to make all panels the same height. The h-100 class only matches the height of the boxes in that specific row. I need all boxes to adjust their height based on the tallest box, regardless of which row they are in.
For example, in this scenario, all the boxes should have the same height:
https://i.sstatic.net/LdMBH.png
<div class="container">
<div class="row">
[LOOP STARTS]
<div class="col-sm-12 col-md-6 col-lg-4 mb-4">
<a href="#">
<div class="panel-link h-100">
<i class="fas fa-link"></i> LINK TEXT HERE
</div>
</a>
</div>
[LOOP ENDS]
</div>
</div>