When I try to run the following:
//This is a 200x200 image
Add overflow:auto; to #container
(Explanations below)
You need to add a clearing div after the img:
<div id="container">
//This is a 200x200 image
<img src="http://dummyimage.com/200x200/CCC/000" />
<div class="clearing"></div>
</div>
And in CSS:
.clearing { clear: both; }