I'm attempting to create a layout similar to the one shown in the linked image, where the left column spans across multiple rows. Currently, my code looks like this:
<div class="row my-row">
<div class="col-6 my-col">1</div>
<div class="col-6 my-col">
<div class="row my-row">
<div class="col-lg-12 my-col">2</div>
<div class="col-lg-12 my-col">3</div>
</div>
</div>
</div>
Is there a different or better way to achieve this layout? I am also struggling to understand how this code is functioning, so I would appreciate an explanation from someone. Thank you.