I have an absolute container (should remain absolute), with a fixed height, and I need to place 2 li inside, one on top and one on the bottom. Both li have a variable height, and I should not use the absolute position for the bottom (we will break something in the menu).
Structure
<div id="container"> <div id="top"> top variable height </div> <div id="bottom">bottom variable height</div>
You can see olso jsfiddle here
Any idea how to do this? Thanks
source share