I am currently working on a responsive webpage design project.
Here is what I have been experimenting with: jsfiddle
<div id="container">
<div id="one">#one</div>
<div id="two">#two</div>
<div id="three">#three</div>
<div id="four">#four</div>
<div id="five">#five</div>
</div>
My main goal is to ensure that in the desktop view, #five
aligns with the bottom of #three
.
As for smaller screens (mobile view), the arrangement of divs works fine and appears in the correct order.
Any suggestions on how I can achieve having #five
touch the bottom of #three
in desktop view?