molily: DocType Verwendung

Beitrag lesen

  • suche nach einer Möglichkeit jedoch mit DocType Verwendung.

Wo ist das Problem bei der Verwendung eines Doctypes?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">  
<html>  
<head>  
<title>Testseite</title>  
<style type="text/css">  
[code lang=css]html, body { height: 100%; margin: 0; padding: 0; border: 0 none; }  
div.container { overflow: hidden; }  
#oben { height: 1%; background-color: blue; }  
#mitte { height: 98%; background-color: yellow; }  
#unten { height: 1%; background-color: red; }

</style>
</head>
<body>

<div class="container" id="oben">oben</div>
<div class="container" id="mitte">mitte</div>
<div class="container" id="unten">unten</div>

</body>
</html>[/code]

Sieht hier in allen Browsern gleich aus.

Mathias