blob: b8d4b2359cf89f2dd4aee7a95645b89bd49ba1aa [file] [log] [blame]
hyatt@apple.comd0cd2fb2009-03-17 17:30:52 +00001<html>
2 <head>
3 <style>
4 #bottom {
5 float: left;
6 width: 520px;
7 height: 356px;
8 background-color:red;
9 }
10
11 #top {
12 float:left;
13 width: 520px;
14 height: 356px;
15 margin-top:-356px;
16 overflow:hidden;
17 background-color:green;
18 }
19 </style>
20
21 </head>
22
23<body>
24 There should be no red visible below.
25 <div style="width:520px">
26 <div id="bottom"></div>
27 <div id="top"></div>
28 </div>
29
30</body>
31</html>