Trying to make an image span the full width of my website is proving tricky. The container housing the image has a 150px margin and 15px padding on each side, causing it to display in the center. I've attempted various methods to remove this formatting, but nothing has been successful so far. Can anyone provide a solution for this issue?
Here's the code snippet in question:
<div class="container">
<div class="row">
<div class="col-12 mb-5">
<img src="../../assets/business.jpg" class="img-fluid" alt="business">
</div>
</div>
</div>