Forum Moderators: not2easy
html { background: url(tile.png) repeat 0 0; }
body { background: url(logo.png) no-repeat 100% 100%; } If you want to go the containing <div> method then given the HTML:
<body>
<div id="container">...contents...</div>
</body> you'd want:
body { background: url(tile.png) repeat 0 0; }
#container { background: url(logo.png) no-repeat 100% 100%; } Something you didn't mention is whether you want the logo to appear at the bottom of the page or at the bottom of the viewport. If it's the viewport you want then you'll have to change your CSS to add in a fixed attachment:
background: url(logo.png) no-repeat fixed 100% 100%;