Say I have a list, which, on mobile, is arranged like this:
A
B
C
D
E
F
On desktop, I want them to arrange like this:
A D
B E
C F
I tried using a flexbox
but I get this:
A B
C D
E F
What is the best way to achieve this responsive reflow?