question on positioning images using css

liunx

Guest
Hi,

I want to know the correct to position images on a web page using css. Where should I actually put the code for the source of the image in the html page? Can the image be inserted anywhere within the body tag and then the css class applied to it. Is this how it is done?
thanks a lotSome useful info here: <!-- m --><a class="postlink" href="http://www.w3schools.com/css/css_positioning.asp">http://www.w3schools.com/css/css_positioning.asp</a><!-- m -->

The nuts and bolts: <!-- m --><a class="postlink" href="http://www.w3.org/TR/CSS21/visuren.html#positioning-schemeIf">http://www.w3.org/TR/CSS21/visuren.html ... g-schemeIf</a><!-- m --> you will type "CSS, images" (w/o the quotes) into Google, you will find more info than what you need.If you are going to use CSS position the image tag can be placed anywhere in the page


<img src=http://www.webdeveloper.com/forum/archive/index.php/"my_image.jpg" style="position:absolute;left:100px;top:200px">
 
Back
Top