Is it possible to stretch a DIV to fit its contents, when its contents are divs with position:absolute?
<div id='container' style='position:relative; border:1px solid #000000'>
<div id='content1' style='position:absolute; top:150px; left:560px;'>
blah blah blah
</div>
<div id='content2' style='position:absolute; top:900px; left:240px;'>
yadda yadda yadda
</div>
<img src='mypic.jpg' style='float:left' />
<div style='clear:both;'></div>
</div>
So I want container DIV to be a box around all the items contained therein. But it seems only to stretch to be big enough to contain the image.