How do you move an image to the right or left in html?

Do you mean after it has been loaded so the person sees it move? Or do you mean you just need to place it over a wee bit?

If you want to move an image after it has been loaded, you need to use jQuery.

To place the image over a bit when it's loading, just use the "left:{position value}" attribute of the <img> element. (replace {position value} with an actual value.)
 
Back
Top