Is there a way to ensure that both divs
in a bootstrap row
maintain the same height when the row collapses on smaller devices?
Here's an example of the code:
<div class="row">
<div class="col-md-6">
content
</div>
<div class="col-md-6>
content
</div>
</div>
The image below illustrates the issue: on larger screens, both divs have equal heights, but on smaller devices, one div appears significantly shorter. How can this be addressed to maintain consistent heights when the row collapses?