Here's a question related to Bootstrap 4.
I'm trying to align two images side by side and make them cover the entire width of the page. I attempted using container-fluid and img-fluid thinking that would make them fill 100% of the screen width and then place them in 2 col-6's. Unfortunately, this approach didn't work.
For reference, here's a visual example of what I'm aiming for along with the current code: Image
<div class="container-fluid">
<div class="row ">
<div class="col-md-6 col-12">
<img class="img-fluid" src="https://images.pexels.com/photos/2187605/pexels-photo-2187605.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260">
</div>
<div class="col-md-6 col-12">
<img class="img-fluid" src="https://images.pexels.com/photos/2187605/pexels-photo-2187605.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260">
</div>
</div>
</div>