I'm looking to create a layout with a .container
that consists of two distinct halves.
The left half should function as a standard .col-6
, while the right half should extend all the way to the edge of the screen, similar to a .col-6
within a .container-fluid
.
Here is an example for reference...
<section>
<div class="container">
<div class="row">
<div class="col-md-6">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Quisque at leo eu ex luctus dictum non nec justo.</p>
</div>
<div class="col-md-6"> <!-- this should stretch out to the right side -->
<p>Pellentesque ac arcu orci. Nam semper sollicitudin mauris vitae condimentum. Sed ac posuere nunc.</p>
<p>Vivamus interdum tellus vel vulputate cursus. Donec varius mauris nec sapien volutpat, eget consequat libero egestas. Aliquam in turpis congue purus fringilla mattis quis id velit. </p>
</div>
</div>
</div>
</section>
I hope this explanation clarifies my request. Thank you for your assistance.