blob: b8d4b2359cf89f2dd4aee7a95645b89bd49ba1aa [file] [log] [blame]
<html>
<head>
<style>
#bottom {
float: left;
width: 520px;
height: 356px;
background-color:red;
}
#top {
float:left;
width: 520px;
height: 356px;
margin-top:-356px;
overflow:hidden;
background-color:green;
}
</style>
</head>
<body>
There should be no red visible below.
<div style="width:520px">
<div id="bottom"></div>
<div id="top"></div>
</div>
</body>
</html>