I have a navbar using flexbox that looks like this (normal screen width):
| div 1 || div 2 || div 3 |
How would I be able to make the layout do this:
| div 1 | | div 3 |
| div 2 |
when squished down (for instance on an phone screen)?
This seems like it might be possible but it could involve javascript since there is some reordering of elements. I tried using the order
CSS property, but that isn't what I needed. To move the row I am using flex-flow
.
Additionally, I am using GWT to create this page.