Position IMAGES *HELP*

Can sum1 tell me the code to position an image using pixels? Like tell the image to position itself in the top right hand corner of page via pixel? help if u can<!--content--><div style="position:absolute; top:0px; left:0px; height:75px; width:100px; z-index:2;"><img src=http://www.webdeveloper.com/forum/archive/index.php/"myimage.gif" height="75" width="100" alt="Logo" /></div><!--content-->You don't really need to put the image in a div tag, you could put the style attribute in the img tag:<br />
<br />
<img src=http://www.webdeveloper.com/forum/archive/index.php/"myimage.gif" style="position:absolute;top:0px;left:0px; height:75px;width:100px;" alt="Logo"><!--content-->
 
Back
Top