I have something like the following code:
<div style="border:2px black solid;overflow:hidden;">
<span style="float:right;">
<img src="sprintlogo.png" alt="Test Image 1" />
</span>
<img src="sprintlogo.png" alt="Test Image 2" style="float:left;" />
<p>Test Text</p>
</div>
For some reason, the bottom border around the <div> is not flush with the images, etc. For example, we get things like this:

It's not an issue with the images or anything (i.e. there is no whitespace in the image file).
By adding background-color:blue; to the <span>'s style attribute, we can see that the span seems to be taking up extra space.

I tried messing with the span's margin and padding to no avail. Does anyone have an idea of what is going on?