I am currently working on aligning a div that sits at the bottom of all other divs.
The last div is set to float and aligned at the top using CSS.
I am unsure how to align it from the left side without any issues when the screen resolution changes. Is there a way to assign an id to one specific div so that its position remains fixed and calculate the distance from that div using CSS?
<div id='fixeddiv'>this div is positioned at the top</div>
<div> remaining div elements </div>
<div> remaining div elements </div>
<div> remaining div elements </div>
<div> remaining div elements </div>
<div> remaining div elements </div>
<div> remaining div elements </div>
<div id='bottom_div'>this div is floating</div>
Thank you