Arranging DIV is easy using bootstarp grid system, but some time its not achievable for me,
I think it's not very complex and achieve without using extra DIV or code but my junk brain is not capable of achieve this grid deisgn,
Thanks
Arranging DIV is easy using bootstarp grid system, but some time its not achievable for me,
I think it's not very complex and achieve without using extra DIV or code but my junk brain is not capable of achieve this grid deisgn,
Thanks
Try this layout:-
<div class="row">
<div class="col-lg-2 col-3"></div>
<div class="col-lg-8 col-6">
<div class="row">
<div class="col-lg-3 col-12"></div>
<div class="col-lg-3 col-12"></div>
<div class="col-lg-6 col-12">
<div class="row">
<div class="col-lg-6 col-6"></div>
<div class="col-lg-6 col-6"></div>
</div>
</div>
</div>
</div>
<div class="col-lg-2 col-3"></div>
</div>