Presenting a straightforward scenario:
<div class="row">
<div class="col-md-12 col-lg-6 col-xl-7">A</div>
<div class="col-md-12 col-lg-6 col-xl-5">B</div>
</div>
In essence, if md
A
B
I wish for it to be like this for md
B
A
I have experimented with various methods found online, such as using flex-first
and other techniques without success.
Any suggestions or thoughts on how to achieve this?