Yesterday, I posted a question on StackOverflow seeking help with using Bootstrap to create an image tile grid collage. However, my question was closed even though a similar question with answers did not provide the solution I needed.
So, here I am again, asking for assistance with more detailed explanations.
My goal is to make the grid cover the entire width of the page while maintaining a height of 590px.
How can I achieve this using Bootstrap 4.4? I would appreciate a code snippet demonstrating the exact steps to accomplish this.
This is what I am trying to achieve: https://i.sstatic.net/mu4hP.jpg
Below is a sample code snippet:
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row no-gutters">
<div class="tile col-lg-6">
<img src="https://cdn.pixabay.com/photo/2016/09/07/11/37/tropical-1651426__340.jpg" class="img-fluid" alt="Responsive image" style="opacity: 1;">
</div>
<div class="tile col-lg-6">
<img class="lazy" src="https://image.freepik.com/free-photo/fiery-orange-sunset-sky-warm-light-with-clouds-beautiful-background_9511-97.jpg" class="img-fluid" alt="Responsive image" style="opacity: 1;">
<div class="row no-gutters">
<div class="tile col-lg-6">
<img src="https://img5.goodfon.com/wallpaper/nbig/5/60/4k-ultra-hd-background-sunset-dark-twilight-sky-clouds-natur.jpg" class="img-fluid" alt="Responsive image" style="opacity: 1;">
</div>
<div class="tile col-lg-6">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/58/Sunset_2007-1.jpg" class="img-fluid" alt="Responsive image" style="opacity: 1;">
</div>
</div>
</div>
</div>