I am currently utilizing Foundation 5 and am aiming to create a unique DIV layout on a mobile display:
--------------------
| A |
--------------------
| B |
--------------------
| C |
--------------------
| D |
--------------------
| E |
--------------------
In addition, I would like the arrangement to appear as follows on a desktop screen:
--------------------------------
| |
| A |
| |
--------------------------------
| | |
| B | |
| | |
-------------------- E |
| | |
| C | |
| | |
--------------------------------
| |
| D |
| |
--------------------------------
If anyone has insight on how to accomplish this, please do share.
Currently, I have organized the layout into three rows: one for A, one including B, C, and E, and one for D. I have experimented with Push and Pull to rearrange D & E on the mobile display, but I am facing challenges due to their placement in different rows.
Please note that the content within the DIVs is dynamic, making it impossible to utilize absolute positioning to reorganize the DIVs on mobile screens.
Thank you in advance for your assistance.