Here is the code snippet I am working with:
<div id="container">
<div id="1"> div 1</div>
<div id="2"> div 2</div>
</div>
I am looking to rearrange the order so that div 1
is positioned at the top and div 2
is placed at the bottom of container
, irrespective of the height of container
. Any suggestions on how I can achieve this?