<div class="container">
<div class="row">
<div class="col-lg-4 col-6 img-thumbnail"><img src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/04LDEYRW59.jpg" alt=""></div>
<div class="col-lg-4 col-6 img-thumbnail"><img src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/90V03Q5Y60.jpg" alt=""></div>
<div class="col-lg-4 col-6 img-thumbnail"><img src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/O83SF2RB6D.jpg" alt=""></div>
<div class="col-lg-4 col-6 rimg-thumbnail"><img src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/5JVPSVP7EI.jpg" alt=""></div>
<div class="col-lg-4 col-6 img-thumbnail"><img src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/C5Y10KIIHA.jpg" alt=""></div>
<div class="col-lg-4 col-6 img-thumbnail"><img src="https://d2lm6fxwu08ot6.cloudfront.net/img-thumbs/960w/YSSFRY5B25.jpg" alt=""></div>
</div>
</div>
Looking for help with resizing images in the Bootstrap Grid System? I used the img-thumbnail class but am struggling with large image sizes that don't adjust when the screen size changes. My goal is to have images resize automatically based on the screen size - larger images for larger screens and smaller images for smaller screens. I came across a solution on stack-overflow involving defining specific dimensions for thumbnails, but it didn't work for me. Any alternative suggestions or tips would be greatly appreciated.
.thumbnail{
width: 300px;
height: 300px;
overflow: auto;
}
Thank you in advance for your assistance.