I have a weird problem, when i’m adding a img tag near a input and a span the img causing the input and the sapn to lower down.
<div>
<span>נקודות זיכוי</span>
<input type="text" name="nekodot_zikoy" value="2.25"/>
<img src="images/cal_black.png" title="חשב נקודות זיכוי" alt="חשב נקודות זיכוי"/>
</div>
I have the code here http://jsfiddle.net/49JcA/
just don’t mind that there is no images if you take the tag out and see what i talking about..
Thank’s!
Assuming you want the span and input to appear on top, just add
align="top"to the image:Updated fiddle.