Suppose I have a div. Inside this div, I believe I have two divs floating to the left, next to each other. The left div is for the image. For some reason, when the image is too tall, it does not push the outer div towards the image. Instead, the picture simply continues to act on its own and goes beyond the outer border of the lower bottom. How can I make it so that the image also extends the outer div?
<div>
<div class="left">
</div>
<div class="right">
</div>
</div>
TIMEX source
share