Oct 25, 2001 #1 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
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
Oct 25, 2001 #2 Bentley22 Programmer Joined Aug 29, 2001 Messages 205 Location CA You could use a large overall table, and put it in the bottomost cell. EX: Code: <table height="100%" width="100%"> <tr><td height="95%"> You main content </td></tr> <tr><td align="right" valign="bottom"> Your image </tr></td> </table> Upvote 0 Downvote
You could use a large overall table, and put it in the bottomost cell. EX: Code: <table height="100%" width="100%"> <tr><td height="95%"> You main content </td></tr> <tr><td align="right" valign="bottom"> Your image </tr></td> </table>