I have a grid container in Bootstrap 5 and I'd like to align it to the left on my webpage.
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="3f5d50504b4c4b4b54e42f56b61a0acf40">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container">
<div class="row">
<div class="col border border-dark m-2">
Col1
</div>
<div class="col border border-dark m-2">
Col2
</div>
<div class="col border border-dark m-2">
Col3
</div>
</div>
</div>
My goal is to have all columns and rows left-aligned on the page. Using position-absolute top-0 start-0
on the container div would make the page unresponsive, according to the documentation. How can I achieve this alignment without losing responsiveness?