I would like to achieve something that renders like this, depending on the screen size:
+---------------------------+
| A | B | C |
+---------------------------+
+---------------+
| A | C |
| B |
+---------------+
If all size are fixed, I can manage using the flex order
property
but the size of my C container is not fixed and so I can't use a static media query.
Is there a way to achieve this?
Edit:
I managed a good enough approximation: In a media query selecting all screens that might need wrapping, I change the order
of the B container to something big, and at the same time, I set its min-width
to 100% which forces the wrap.