I am wondering if it is possible to float the div using CSS in the following manner. My goal is to have CSS DIV 2 move under CSS DIV 1 to the right when the window size is reduced. Please refer to the screenshot below:
On larger window sizes, three DIVs are displayed as follows: The first DIV is in the top left corner, the second DIV is below the first, and the third DIV is in the top right corner.
As I resize the browser window, the third DIV, with a wider width, will drop to the bottom under the first DIV. The second DIV will automatically move to the top right corner to fill in the space.
Do you think it is achievable using CSS alone, without the need for JavaScript or other tools?
Thank you