Unfortunately, margin/padding won't work for this. You need to set the image to a block element (which can cause other problems).
- Code: Select all
<img src="this.jpg" class="block" alt="image" />
<style type="text/css">
img.block {
display: block;
}
</style>
I think this is the only way to get rid of the space, but I'm not 100% sure.