In my project, I am utilizing bootstrap 4.5 and aiming to create an edge-to-edge view for mobile devices.
Here is the layout I currently have:
<div class="container">
<div class="row">
<div class="col-md-9>...</div>
<div class="col-md-3>...</div>
</div>
While it looks fine on desktop, there is too much padding on mobile, and I want the content to appear edge-to-edge.
https://i.sstatic.net/iR7g0.png
I've attempted to use no-gutters
on the row
, as well as removing padding from the container, but it adversely affects the desktop version's appearance.