Hey everyone, I'm facing a small dilemma.
Currently, I am tackling a project with a unique design. Within the layout of this project, there is an image section that is causing some trouble for me.
I am aiming to create a portion of the website where products are displayed on the left, middle, and right sections. My current code looks like this:
<div class="container-fluid">
<div class="row">
<div class="col-12 offset-lg-1 col-lg-3 product-left">
<div class="card"></div>
</div>
<div class="col-12 col-lg-4 product-middle">
<div class="card pm-first"></div>
<div class="card pm-second"></div>
</div>
<div class="col-12 col-lg-3 product-right">
<div class="card"></div>
</div>
</div>
</div>
I am struggling to ensure that the two products in the middle always have the same height as the ones on the left and right sides.
I would appreciate any guidance or assistance on this matter. Right now, I am unable to find a solution, so forgive me for this basic question!๐