How can I create a responsive Bootstrap layout with 2 columns and a nested row in the right column? The desired layout is as follows:
Desktop Version:
---------
| 2 || 1 |
| || |
| |-------
| || 3 |
| || |
| |-------
| |
| |
---------
Mobile Version (stacked in order):
-------- | 1 | | | -------- | 2 | | | | | | | | | | | -------- | 3 | | | --------Here is my code:
<div class="row">
<div class="col-lg-4">
<div class="row">
<div class="col-lg-12">1
</div>
<div class="row">
<div class="col-lg-12">3
</div>
</div>
<div class="col-lg-8 order-lg-first">2
</div>
</div>
Currently, the order in the mobile version is 1, 3, 2. However, I am aiming for the order to be 1, 2, 3.