Har lige lavet et lille eksempel på det (jeg tror) du er ude efter:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Test</title>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<style type="text/css" media="screen">
* {
margin: 0;
padding: 0;
}
html, body
{
height: 100%;
background-color: #fff;
}
#outer
{
width: 100%;
height: 100%;
}
#top
{
width: 100%;
height: 100px;
background-color: #f0f0f0;
}
#middle
{
width: 100%;
padding-bottom: 50px;
}
#bottom
{
width: 100%;
position: absolute;
bottom: 0;
height: 50px;
background-color: #f0f0f0;
}
</style>
</head>
<body>
<div id="outer">
<div id="container">
<div id="top">
Top
</div>
<div id="middle">
Her er content
</div>
<div id="bottom">
Bund
</div>
</div>
</div>
</body>
</html>
Det er vigtigt at ligge mærke til, at padding-bottom på middle og height på bottom er den samme - hvis de ikke er dette, vil de to overlappe hinanden.
Hvis du vil tilføje mere i toppen af dokumentet, altså over content, så vil dette layout stadig virke korrekt.
Indlæg senest redigeret d. 18.09.2008 12:52 af Bruger #2330