Ein Div Container mit 100 Prozent Höhe Auch hierzu gibt es ein Videotutorial auf lupin3000

<style type="text/css">
<!--
html, body {
margin: 0px;
padding: 0px;
height: 100%;
}
#myDiv {
min-height: 100%;
height: auto !important;
background-color: #ECE2C6;
height: 100%;
width: 300px;
}
-->
</style>

 

Neben den Eingaben mit Dreamweaver muss man auch im Quellcode der Stylesheet Definition für #myDiv min-height und height: auto hinzufügen. Außerdem hab ich noch folgende Defininition für Absätze innhalb von #myDiv hinzugefügt:

#myDiv p {
margin-top: 0px;
margin-right: 10px;
margin-bottom: 10px;
margin-left: 10px;
}