So the following worked on 4.alpha but I am not having any luck figuring it out on 4.beta
I am using a col-3 | col-6 | col-3
row layout.
When the browser is medium
(desktop) or larger I want that layout.
When the browser is smaller than medium
, I would like:
- The
col-md-6
(#2) div to be at the top row - The
col-md-3
(#1) directly below it - The
col-md-3
(#3) on the very bottom row
Here is the code that I had for 4.alpha that worked:
<div class="container-fluid">
<div class="row">
<div class="col-md-3">#1</div>
<div class="col-md-6 flex-first flex-md-unordered">#2</div>
<div class="col-md-3 flex-third flex-md-unordered">#3</div>
</div>
</div>
What is the method to get this to go 2|1|3
on mobile devices??