Forum Moderators: not2easy
<head>
<style type="text/css">
body,html {
background-color: #000000;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
height:100%;
}
</style>
</head>
<body>
<table width="100%" style="height: 100%;" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="bottom" align="right" height"100%"><img src="img/ARCH.gif" border="0" /></td>
</tr>
</table>
</div>
</body>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>untitled</title>
<style type="text/css">
* {
margin:0; /* reset */
padding:0;
}
html {
background-color: black; /* from your example */
}
body {
color: yellow; /* to see the text */
padding-bottom: 100px;
/* to make sure it can scroll to clear the image */
}
#logo {
display: block;
position: fixed;
bottom:0;
right:0;
width: 100px; /* just an example */
height: 100px; /* just an example */
}
</style>
</head>
<body>
<img id="logo" src="1.jpg" alt="description" />
<p>replace me with a long text in order to get scrollbars</p>
</body>
</html>
Leaving testing (and fixing it for) IE as an exercise for the reader ;)
Position fixed is not supported in IE6, you'll need to use something like IE7.js or use a more graceful fallback if you still care about that browser.