Given:
<img src="..."/>
<img src="..."/>
The result is two images with a single space between them. It seems that the normal behavior is to show any number of spaces, newlines, and tabs as a single white space. I know I can do the following:
<img src="..."/><img src="..."/>
OR
<img src="..."/><!--
--><img src="..."/>
OR
<img src="..."/
><img src="..."/>
Or any number of other hacks. Is there a way to remove that whitespace with CSS? e.g.
<div class="nospace">
<img src="..."/>
<img src="..."/>
</div>