That is happening because img is an inline element - that is, essentially becomes something which is part of the flow of the text. Since there is some space between them in the markup, there is a space character in the output.
To remove this, you can either remove the whitespace in the markup, or change them to use styles along these lines:
img {
display: block; /* no longer an inline element */
float: left; /* element will contract width to as small as it needs to be */
/* and push it left */
}
This might cause you some issues in terms of the container no longer containing though. You can either have another element clear: left (or both) to push the bottom down, or have the container floated too. That would depend on your overall layout I think.