ok what i have is am img and a heading.
i want the image to sit at the top right of the of the line of text. I can do right with standard align.
but im trying to use css to place the img (id=top_pic) at a specific location on the page.
here is the html
<table width="450" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="450">
<h1>Heading</h1>
<img src="../images/Mainteck%20Logo%20small.jpg" name="top_pic" width="214" height="90" id="top_pic">
<h6> </h6>
<p> </p>
here is the style code
#top_pic {
position: absolute;
top: 20;
right: 200;
}
i want the image to sit at the top right of the of the line of text. I can do right with standard align.
but im trying to use css to place the img (id=top_pic) at a specific location on the page.
here is the html
<table width="450" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="450">
<h1>Heading</h1>
<img src="../images/Mainteck%20Logo%20small.jpg" name="top_pic" width="214" height="90" id="top_pic">
<h6> </h6>
<p> </p>
here is the style code
#top_pic {
position: absolute;
top: 20;
right: 200;
}