Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

justify bottom right

Status
Not open for further replies.

hacksaw

Programmer
Joined
Oct 25, 2001
Messages
1
Location
AU
i am trying to keep an image in the bottom right corner of the browser. the image is made up of three parts (cut up in image ready).

can someone help?

thank you

hacksaw
 
You could use a large overall table, and put it in the bottomost cell.

EX:

Code:
<table height=&quot;100%&quot; width=&quot;100%&quot;>
<tr><td height=&quot;95%&quot;>

You main content

</td></tr>
<tr><td align=&quot;right&quot; valign=&quot;bottom&quot;>

Your image

</tr></td>
</table>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top