The images are not resizing according to the container. Despite setting both height and width to 100%, the image is not taking the width of the outer column container. https://i.sstatic.net/10eMg.jpg This is what I expected
This is the result I am currently seeing
https://i.sstatic.net/JetA3.png
.content {
padding: 20px 0px;
}
.adventure-card-image {
width:100%;
height: 100%;
}
<div class="container">
<div class="content">
<!-- TOOD: MODULE_ADVENTURE_DETAILS -->
<!-- 1. Write the child elements as required. -->
<!-- 2. Remember to use .adventure-card and its related classes. -->
<div class="row">
<!--Grid column-->
<div class="col-lg-4 col-md-12 mb-4">
<img src="/assets/adventures/resort/resort1.jpg"
class="adventure-card-image img-fluid mb-4" alt="Resort1">
</div>
<!--Grid column-->
<!--Grid column-->
<div class="col-lg-4 col-md-6 mb-4">
<img src="/assets/adventures/resort/resort2.jpg"
class="adventure-card-image img-fluid mb-4" alt="Resort2">
<img src="/assets/adventures/resort/resort3.jpg"
class="adventure-card-image img-fluid mb-4" alt="Resort3">
</div>
</div>