I'm currently working on designing a layout that includes a set of images displayed in a specific arrangement. However, I am encountering difficulties in controlling the height of three images on the right so they do not exceed the height of the image on the left. Here is my existing code:
<div class="container-fluid">
<div class="row">
<div class="col-md-6">
<div class="card">
<img class="card-img img-fluid" src="https://images.unsplash.com/photo-1528463104570-9b313927fbca?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=b2815b93860831943ffdb596ed4b8668"/>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col">
<div class="card">
<img class="card-img img-fluid" src="https://images.unsplash.com/photo-1468898203265-d5b5601865c7?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=a02d4618cdbf5cf692c5dba45c3ac028"/>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card">
<img class="card-img img-fluid" src="https://images.unsplash.com/photo-1476483547798-bf769a2cbba5?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=bc78be3e84a52b29ec28309d5de33c25"/>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card">
<img class="img-fluid" src="https://images.unsplash.com/photo-1513804191723-238c2f3c66f9?ixlib=rb-0.3.5&q=85&fm=jpg&crop=entropy&cs=srgb&ixid=eyJhcHBfaWQiOjE0NTg5fQ&s=a58c1bc2427d9e45c5d8d7bc69e54aa0"/>
</div>
</div>
</div>
</div>
</div>
</div>
Link to the CodePen: https://codepen.io/sixstring666/pen/ejyZXM
Currently utilizing Bootstrap for handling the responsiveness of images, but questioning if it's the most suitable approach for this particular scenario.