Hallo zusammen,
zerbrech mir an folgendem Problem seit längerem die Zähne.
Man findet immer nur ähnliche Probleme, nie genau das.
Also beide Divs - Inhalt sowie Navi - sollen ohne Inhalt bis zum unteren Bildschirmrand eingeblendet werden.
Weder height 100%, margin-bottom 0 usw bringen mich einfach nicht weiter

Jemand einen Tipp oder gar die Lösung??
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
<!--
body {
font: 100.01% Verdana, Arial, Helvetica, sans-serif;
}
* {
margin:0;
padding:0;
}
#seite {
width: 750px;
margin: 0 auto;
position:absolute;
left:50%;
margin-left:-350px;
height :auto !important; /* moderne Browser */
height:100%; /* IE */
min-height: 100%;
margin-bottom:0px;
}
#head {
padding: 20px;
}
#inhalt {
background:#999;
margin-right: 142px;
padding: 20px;
height :auto !important; /* moderne Browser */
height:100%; /* IE */
min-height: 100%;
margin-bottom:0px;
}
#navi {
background:#FF0;
float: right;
width:142px;
height :auto !important; /* moderne Browser */
height:100%; /* IE */
min-height: 100%;
bottom:0;
margin-bottom:0;
}
-->
</style>
</head>
<body>
<div id="seite">
<div id="head">
Head</div>
<div id="navi">
<p>Navi</p>
<p> </p>
<p> </p>
<p> </p>
</div>
<div id="inhalt">
<p>Inhalt </p>
<p> </p>
<p> </p>
<p> </p>
</div>
</div>
</body>
</html>
Danke für eure Hilfe!