I am currently developing a responsive website that will have different layouts depending on the screen size. On desktop/large screens, it will be structured as follows:
- Header
- Menu
- Content
However, on smaller screens like phones, the layout should change to:
- Header
- Content
- Menu
I have seen examples using absolute positioning for this kind of setup, but I want the layout to adapt dynamically based on screen size without fixed positions. Can anyone suggest a solution for achieving this?
Thank you!