I am currently working on a specific layout design, which can be viewed https://i.sstatic.net/IjlHG.png.
Below is the code structure for this layout:
<div className="row">
<div className="col">
A
</div>
<div className="col-6">
<div className="row h-50">
B
</div>
<div className="row h-50">
C
</div>
</div>
<div className="col text-center my-auto">
D
</div>
</div>
On smaller screens, I want to rearrange the layout to look like what is shown https://i.sstatic.net/xy5T7.png.
I have explored using Bootstrap's pull
and push
classes, but most examples involve single rows with single columns. Since B and C are nested within another row in my case, I'm finding it challenging to implement the desired outcome smoothly.