blob: 1cf3f4868191a88ffcc08ab273cb2df2ca33edd6 [file] [log] [blame]
darinb5a817a2003-07-31 00:18:03 +00001<html>
2<head>
3<style>
4.middle {
5 background-color:green;
6 -moz-box-flex: 1;
commit-queue@webkit.orga659cc292010-07-21 20:39:15 +00007 -webkit-box-flex: 1;
darinb5a817a2003-07-31 00:18:03 +00008 box-flex: 1;
9 border: 10px solid olive;
10}
11
12html {
13 background-color: white;
14 height: 100%;
15}
16
17body {
18 height: 100%;
19 margin: 0px;
20}
21
22div.outer {
23 display: -moz-box;
commit-queue@webkit.orga659cc292010-07-21 20:39:15 +000024 display: -webkit-box;
darinb5a817a2003-07-31 00:18:03 +000025 display: box;
26 -moz-box-orient: vertical;
commit-queue@webkit.orga659cc292010-07-21 20:39:15 +000027 -webkit-box-orient: vertical;
darinb5a817a2003-07-31 00:18:03 +000028 box-orient: vertical;
29 height: 100%;
30 width: 100%;
31}
32</style>
33</head>
34<body>
35<div class="outer">
36<div>
37This header should remain at the top of the browser window as you resize it. It
38can wrap to multiple lines. The center should be filled with an olive-bordered
39green box. It should start beneath the header, end above the footer, and fill the width of the
40browser window.
41</div>
42<!--<div class="middle"></div>-->
43<iframe class="middle" style="display: block; width:99%" src="about:blank"></iframe>
44<div>
45This footer should remain at the bottom of the browser window. It
46can wrap to multiple lines if necessary.
47</div>
48</div>
49</body>
50</html>