After spending countless hours attempting to create a responsive webpage using the bootstrap grid system, I have hit a dead end.
Here is the code I have been working with:
<div class="row">
<div class="col-md-2" align="center">
<div class="d-flex flex-column">
<h1 class="border">A</h1>
<h1 class="border">B</h1>
<h1 class="border">C</h1>
</div>
</div>
<div class="col-md-7 col-sm-9 border" align="center">
<h1>D</h1>
</div>
<div class="col-md-3 col-sm-3 border" align="center">
<h1>E</h1>
</div>
</div>
I have managed to implement the COL-MD but now I am struggling with achieving the desired layout for COL-SM.
The goal is to achieve a layout similar to this one for COL-SM:
https://i.sstatic.net/7YdHK.png
I have tried various methods including offsets, but I just can't seem to get it right. Can someone provide guidance on how to accomplish this?