It's not going to be easy though. Here's a rough example of what you're looking at; I don't know if it'll stand up to the rigors of actual site development though. Bear in mind though that this example uses a percentage (which is the easiest and perhaps ONLY way of getting the effect you want without having to resort to absolute and/or fixed positioning, which can get very messy REAL quick - and cause all kinds of problems in IE).
HTML Code:
<!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 Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta http-equiv="imagetoolbar" content="no" />
<meta name="description" content="A brief description of the current page goes here." />
<meta name="keywords" content="keywords, go, here, only, once, page, content, has, been, finished" />
<!--<link rel="stylesheet" type="text/css" href="screen.css" media="screen,projection" />-->
<style type="text/css">
* {
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
#container {
background: #C9F;
min-height: 80%;
position: relative;
top: 10%;
}
* html #container {
height: 80%;
}
</style>
</head>
<body>
<div id="container">
Content content content blah blah blah
</div>
</body>
</html>
Bookmarks