I'm exploring methods to rearrange items on mobile using the md
and col-
classes to achieve the following layout:
On Desktop:
[1] [4]
[2] [5]
[3]
[6]
[7]
For Mobile:
[1]
[2]
[3]
[4]
[5]
[6]
[7]
Is there a way to accomplish this without resorting to the hidden-md-
class or duplicating content?
Here is the HTML from ZimSystem:
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-md-12 text-center">
1
</div>
<div class="col-md-12 text-center">
2
</div>
<div class="col-md-12 text-center">
3
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-12 text-center">
long block of content for block 4
</div>
<div class="col-md-12 text-center">
5
</div>
</div>
</div>
<div class="col-md-6">
<div class="row">
<div class="col-md-12 text-center">
6
</div>
<div class="col-md-12 text-center">
7
</div>
</div>
</div>
</div>
Is it possible to arrange the content of Block 6 below Block 3 as illustrated in this picture: https://i.sstatic.net/Rcr4v.png