I'm struggling to remove space and create a flex column .col-md-5 with varying heights. Despite trying various solutions found on Google, I still can't get it to function properly. The current outcome is not as expected.
https://i.sstatic.net/fcNZ8.png
Below is the code snippet:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
<div class="container-fluid">
<div class="ayaz">
<div class="col-md-5 col-md-offset-1" style="margin-bottom:10px;">
// rest of the code here
</div>
<div class="col-md-5 " style="margin-bottom:10px;">
// rest of the code here
</div>
<div class="col-md-5 col-md-offset-1" style="margin-bottom:10px;">
// rest of the code here
</div>
</div>
</div>
If anyone has insights or suggestions on how to fix this issue, I would greatly appreciate it. Thank you for your help.