blob: 7e9f401f357020b6aeead2d4fc2304847ab77f04 [file] [log] [blame]
darinb5a817a2003-07-31 00:18:03 +00001<html>
2<head>
3<style>
4div.box {
5 height: 100px;
6 width: 100px;
7 background-color:red;
8 display: -moz-box;
commit-queue@webkit.orga659cc292010-07-21 20:39:15 +00009 display: -webkit-box;
darinb5a817a2003-07-31 00:18:03 +000010 display: box;
11}
12
13div.innerBox {
14 width: 100px;
15 background-color:green;
16}
17</style>
18</head>
19<body>
20<p>You should see a green 100x100 box below. If you see a red box, then the inner block is not properly growing
21to fill the height of the enclosing box.
22</p>
23<div class="box">
24<div class="innerbox"></div>
25</div>
26</div>
27</body>
28</html>