I'm experiencing a strange issue where adding an img tag alongside an input and a span causes the input and span to shift downwards.
<div>
<span>Credit Points</span>
<input type="text" name="credit_points" value="2.25"/>
<img src="images/cal_black.png" title="Calculate Credit Points" alt="Calculate Credit Points"/>
</div>
You can find the code here http://jsfiddle.net/49JcA/
If you remove the image tag, you'll see what I mean about the alignment issue.
Thank you!