My design features a left-side column aligned with container padding, while the right side column spans full width and touches the scroll. Check out the design below:
https://i.sstatic.net/w8iCO.png
I'm looking to achieve this design using Bootstrap. I've attempted to do so with the following code:
<div class='container me-0'>
<div class='row align-items-center'>
<div class='col-md-5'>
<h1>Application Development</h1>
<p className='mb-0'>
Craft innovative applications tailored to clients with latest programming techniques.
</p>
</div>
<div class='col-md-7'>
<img src='/assets/images/services1.png' alt='Contact' style="width: 100%"/>
</div>
</div>
</div>
Responsive is key for my project, which is why I am working with Bootstrap 5.