hyatt@apple.com | d0cd2fb | 2009-03-17 17:30:52 +0000 | [diff] [blame] | 1 | <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> |