Thomas J.: Nachtrag

Beitrag lesen

Da war ich wohl etwas zu voreilig.

Noch nicht einmal diese (unfaire) Lösung klappt:
<div style="height:100%; border: #FFFFFF solid; border-width: 100px 0px">test</div>

Diese schon:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<style type="text/css">
  body {
     margin:0px;
     padding:100px 0px;
     background-color:#FFFFFF;
     color:#FF0000;
  }
</style>
</head>
<body>
<div style="width:100%;height:100%;background-color:#000000;">test</div>
</body>
</html>

Aber ob das jetzt Sinn und Zweck der Übung war?

Thomas J.