'left' Example
<html> <body> <p> <img id="myImg" src="http://www.java2s.com/style/logo.png" width="100" height=100" style="position:relative"> </p> <input type="button" value="Set left property to 100" onclick="myImg.style.left=100"> <input type="button" value="Set left property to 200" onclick="myImg.style.left=200"> <input type="button" value="Restore image position" onclick="myImg.style.left=0"> </body> </html>