I have the following layout when on a large display:
AAA BBB
AAA CCC
(all A's, all B's, and all C's form one div, so there are 3 elements here)
Now when this collapses I want it to become
BBB
AAA
AAA
CCC
I tried specifying the elements in this order in the HTML, but then the best I could manage to get for the expanded view was (using .push-X classes)
AAA BBB
AAA
CCC
The only solutions I can think of are moving things around by JS, or having duplicates of CCC
at the correct position and showing and hiding them depending on viewport size.
Is there a cleaner way to do this?